*Properly initialize members to prevent DB logging before the DB is started. Fixes a rarely seen startup crash.

*Code cleanup.

--HG--
branch : trunk
This commit is contained in:
Xanadu
2010-05-29 03:16:39 +02:00
parent de97bd4f00
commit d104f19469
5 changed files with 12 additions and 37 deletions

View File

@@ -31,8 +31,9 @@ INSTANTIATE_SINGLETON_1( Log );
Log::Log() :
raLogfile(NULL), logfile(NULL), gmLogfile(NULL), charLogfile(NULL),
dberLogfile(NULL), chatLogfile(NULL), m_gmlog_per_account(false), m_colored(false)
, arenaLogFile(NULL)
dberLogfile(NULL), chatLogfile(NULL), m_gmlog_per_account(false),
m_enableLogDBLater(false), m_enableLogDB(false), m_colored(false),
arenaLogFile(NULL)
{
Initialize();
}