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:
@@ -22,8 +22,8 @@ using std::set;
|
||||
class CClientNotifyMod : public CModule {
|
||||
protected:
|
||||
CString m_sMethod;
|
||||
bool m_bNewOnly;
|
||||
bool m_bOnDisconnect;
|
||||
bool m_bNewOnly{};
|
||||
bool m_bOnDisconnect{};
|
||||
|
||||
set<CString> m_sClientsSeen;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user