forked from mirror/openmw-tes3mp
[General] Fix memory leak in Log dtor
This commit is contained in:
parent
ebaf3d3cc9
commit
715422aff6
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ void Log::Create(int logLevel)
|
|||
void Log::Delete()
|
||||
{
|
||||
if (sLog == NULL)
|
||||
return
|
||||
return;
|
||||
delete sLog;
|
||||
sLog = NULL;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue