--User changes:

Resize options and about dialogs for Linux.

--Bug fixes:
	Null check on file close in ReadFile().
This commit is contained in:
mfeemster
2015-09-12 20:10:47 -07:00
parent 018ba26b5f
commit 2f0227755b
3 changed files with 7 additions and 6 deletions

View File

@ -211,6 +211,7 @@ static bool ReadFile(const char* filename, string& buf, bool nullTerminate = tru
}
fclose(f);
f = nullptr;
}
}
catch (const std::exception& e)