aboutsummaryrefslogtreecommitdiffstats
path: root/src/channels.cpp
diff options
context:
space:
mode:
authorGravatar w00t2008-07-20 08:53:56 +0000
committerGravatar w00t2008-07-20 08:53:56 +0000
commitca781714c1651a9e7042eb930c6b117449f8e1fc (patch)
tree626d56d3997cfffcfaecf8461ed6cfceed74b200 /src/channels.cpp
parentFix total mess of makefile dependency macros (all depending on stuff they don... (diff)
downloadinspircd++-ca781714c1651a9e7042eb930c6b117449f8e1fc.tar.gz
inspircd++-ca781714c1651a9e7042eb930c6b117449f8e1fc.tar.bz2
inspircd++-ca781714c1651a9e7042eb930c6b117449f8e1fc.zip
Fixes to some stuff that writes on memory it shouldn't (thanks psychon).
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10047 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/channels.cpp')
-rw-r--r--src/channels.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/channels.cpp b/src/channels.cpp
index 878fdc1a2..8628148cf 100644
--- a/src/channels.cpp
+++ b/src/channels.cpp
@@ -31,7 +31,7 @@ Channel::Channel(InspIRCd* Instance, const std::string &cname, time_t ts) : Serv
maxbans = topicset = limit = 0;
- memset(&modes, 0, 64);
+ modes.reset();
}
void Channel::SetMode(char mode,bool mode_on)