Bug 790633 - Make FindClose errors visible to the test suite. r=froydnj

This commit is contained in:
David Rajchenbach-Teller 2012-09-21 23:36:14 -04:00
Родитель b783039a2c
Коммит 962cfb1956
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -561,7 +561,8 @@
if (!this._handle) { if (!this._handle) {
return; return;
} }
WinFile.FindClose(this._handle); throw_on_zero("FindClose",
WinFile.FindClose(this._handle));
this._handle = null; this._handle = null;
} }
}; };