mirror of
https://github.com/znc/znc.git
synced 2026-05-02 03:22:33 +02:00
Fix some unitialized fields in modules.
They are not used before OnLoad anyway, but Coverity will be happier.
This commit is contained in:
@@ -192,7 +192,7 @@ public:
|
||||
|
||||
private:
|
||||
// If this is NULL, we are turned off for some reason
|
||||
CKeepNickTimer* m_pTimer;
|
||||
CKeepNickTimer* m_pTimer = nullptr;
|
||||
};
|
||||
|
||||
CKeepNickTimer::CKeepNickTimer(CKeepNickMod *pMod) : CTimer(pMod, 30, 0,
|
||||
|
||||
Reference in New Issue
Block a user