diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-11-14 20:01:01 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-11-14 20:01:01 +0000 |
commit | a3de29f341a1a7e057d248686a9a9170ac67f466 (patch) | |
tree | 016941403daec0dc38429e4238d05ddcb71e9e4a /src/modules/m_chanprotect.cpp | |
parent | 9d5102ed8b0985de418e7acc2613c3ded7fbfe96 (diff) |
Another couple of 'forgot to memset's
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5742 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_chanprotect.cpp')
-rw-r--r-- | src/modules/m_chanprotect.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_chanprotect.cpp b/src/modules/m_chanprotect.cpp index d46d28faa..23924bd0a 100644 --- a/src/modules/m_chanprotect.cpp +++ b/src/modules/m_chanprotect.cpp @@ -289,10 +289,10 @@ class ModuleChanProtect : public Module public: - ModuleChanProtect(InspIRCd* Me) : Module::Module(Me) + ModuleChanProtect(InspIRCd* Me) + : Module::Module(Me), FirstInGetsFounder(false), QAPrefixes(false), DeprivSelf(false), booting(true) { /* Load config stuff */ - booting = true; OnRehash(""); booting = false; |