зеркало из https://github.com/mozilla/pjs.git
move file->close() into the if() clause. b=382508, r=luser
This commit is contained in:
Родитель
fefabcdeac
Коммит
18f8c1f7a8
|
@ -155,9 +155,9 @@ bool ReadStringsFromFile(const string& path,
|
|||
bool success = false;
|
||||
if (f->is_open()) {
|
||||
success = ReadStrings(*f, strings, unescape);
|
||||
f->close();
|
||||
}
|
||||
|
||||
f->close();
|
||||
delete f;
|
||||
return success;
|
||||
}
|
||||
|
@ -192,9 +192,9 @@ bool WriteStringsToFile(const string& path,
|
|||
bool success = false;
|
||||
if (f->is_open()) {
|
||||
success = WriteStrings(*f, header, strings, escape);
|
||||
f->close();
|
||||
}
|
||||
|
||||
f->close();
|
||||
delete f;
|
||||
return success;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче