forked from Mirrorlandia_minetest/minetest
Close settings files and save them correctly
This commit is contained in:
parent
4fcf9fb66a
commit
d75f0b0360
@ -350,8 +350,11 @@ 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
Block a user