mirror of
https://github.com/znc/znc.git
synced 2026-03-28 17:42:41 +01:00
Fix some unitialized fields in modules.
They are not used before OnLoad anyway, but Coverity will be happier.
This commit is contained in:
@@ -174,7 +174,7 @@ private:
|
||||
LOG_TO_SYSLOG = 1 << 1,
|
||||
LOG_TO_BOTH = LOG_TO_FILE | LOG_TO_SYSLOG
|
||||
};
|
||||
LogMode m_eLogMode;
|
||||
LogMode m_eLogMode = LOG_TO_FILE;
|
||||
CString m_sLogFile;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user