1
0
mirror of https://github.com/anope/anope.git synced 2026-06-27 23:56:39 +02:00

Fix not initializing module in the main log constructor

This commit is contained in:
Adam
2014-01-10 01:41:03 -05:00
parent 15a27c69ba
commit f3531e7564
+1 -1
View File
@@ -75,7 +75,7 @@ const Anope::string &LogFile::GetName() const
return this->filename;
}
Log::Log(LogType t, const Anope::string &cat, BotInfo *b) : bi(b), u(NULL), nc(NULL), c(NULL), source(NULL), chan(NULL), ci(NULL), s(NULL), type(t), category(cat)
Log::Log(LogType t, const Anope::string &cat, BotInfo *b) : bi(b), u(NULL), nc(NULL), c(NULL), source(NULL), chan(NULL), ci(NULL), s(NULL), m(NULL), type(t), category(cat)
{
}