1
0

Fixed a sigsegv on *nix (cFile double-closing files)

git-svn-id: http://mc-server.googlecode.com/svn/trunk@208 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
madmaxoft@gmail.com 2012-02-01 07:01:21 +00:00
parent dc926282ec
commit 3364ecc284

View File

@ -94,6 +94,7 @@ void cFile::Close(void)
}
fclose(m_File);
m_File = NULL;
}