resource leak: fp

[source/shared_lib/sources/map/map_preview.cpp:830]: (error) Resource leak: f1

Found by https://github.com/bryongloden/cppcheck
This commit is contained in:
Bryon Gloden, CISSP® 2016-10-01 11:41:07 -04:00 committed by GitHub
parent 60253b4f4b
commit 1cb226283f
1 changed files with 1 additions and 0 deletions

View File

@ -827,6 +827,7 @@ void MapPreview::loadFromFile(const string &path) {
if(bytes != 1) {
char szBuf[8096]="";
snprintf(szBuf,8096,"fread returned wrong size = " MG_SIZE_T_SPECIFIER " on line: %d.",bytes,__LINE__);
fclose(f1);
throw megaglest_runtime_error(szBuf);
}
fromEndianMapFileHeader(header);