Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix a slight leak in LogManager.
m_debuggerLog wasn't ever deleted in the destructor.
  • Loading branch information
lioncash committed Mar 28, 2013
1 parent 507f53e commit b1dd14c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Source/Core/Common/Src/LogManager.cpp
Expand Up @@ -116,6 +116,7 @@ LogManager::~LogManager()

delete m_fileLog;
delete m_consoleLog;
delete m_debuggerLog;
}

void LogManager::Log(LogTypes::LOG_LEVELS level, LogTypes::LOG_TYPE type,
Expand Down

0 comments on commit b1dd14c

Please sign in to comment.