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:
@@ -47,7 +47,7 @@ protected:
|
||||
|
||||
class CRejoinMod : public CModule {
|
||||
private:
|
||||
unsigned int delay;
|
||||
unsigned int delay = 10;
|
||||
|
||||
public:
|
||||
MODCONSTRUCTOR(CRejoinMod) {
|
||||
|
||||
Reference in New Issue
Block a user