summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-03-23 21:18:32 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-03-23 21:18:32 +0000
commit1f30a3496f0e4645c16353888b83bc265c3d36bd (patch)
tree334d8f61e5c20b1fdef7c12c2104d68abdc10e31
parent20680f9c4964a5e10e3649a1e479078ff85c5c85 (diff)
Whoops, take out some foolish memsets (well theyre foolish now :p)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9180 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--src/users.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/users.cpp b/src/users.cpp
index 43ebfe0a3..59fcf6c94 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -196,8 +196,6 @@ User::User(InspIRCd* Instance, const std::string &uid) : ServerInstance(Instance
AllowedUserModes = NULL;
AllowedChanModes = NULL;
AllowedOperCommands = NULL;
- memset(AllowedUserModes, 0, sizeof(AllowedUserModes));
- memset(AllowedChanModes, 0, sizeof(AllowedChanModes));
chans.clear();
invites.clear();
memset(modes,0,sizeof(modes));