Close settings files and save them correctly
parent
4fcf9fb66a
commit
d75f0b0360
|
@ -351,7 +351,10 @@ bool Settings::updateConfigFile(const char *filename)
|
|||
std::ifstream is(filename);
|
||||
std::ostringstream os(std::ios_base::binary);
|
||||
|
||||
if (!updateConfigObject(is, os, ""))
|
||||
bool was_modified = updateConfigObject(is, os, "");
|
||||
is.close();
|
||||
|
||||
if (!was_modified)
|
||||
return true;
|
||||
|
||||
if (!fs::safeWriteToFile(filename, os.str())) {
|
||||
|
|
Loading…
Reference in New Issue