Fixed 2 possible crashbugs
This commit is contained in:
parent
0fc8f0b489
commit
605ca152c2
|
@ -64,7 +64,7 @@ void CLog::CloseFile()
|
|||
if (fp)
|
||||
{
|
||||
fclose(fp);
|
||||
fopen(m_LogFile.c_str(), "a+");
|
||||
fp = fopen(m_LogFile.c_str(), "a+");
|
||||
|
||||
// get time
|
||||
time_t td;
|
||||
|
@ -106,9 +106,12 @@ void CLog::CreateNewFile()
|
|||
ALERT(at_logged, "[AMXX] Unexpected fatal logging error. AMXX Logging disabled.\n");
|
||||
SET_LOCALINFO("amxx_logging", "0");
|
||||
}
|
||||
else
|
||||
{
|
||||
fprintf(fp, "AMX Mod X log file started (file \"%s/L%02d%02d%03d.log\") (version \"%s\")\n", g_log_dir.c_str(), curTime->tm_mon + 1, curTime->tm_mday, i, AMX_VERSION);
|
||||
fclose(fp);
|
||||
}
|
||||
}
|
||||
|
||||
void CLog::UseFile(const String &fileName)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue
Block a user