summaryrefslogtreecommitdiff
path: root/src/command_parse.cpp
diff options
context:
space:
mode:
authordanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-09-02 00:46:44 +0000
committerdanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-09-02 00:46:44 +0000
commit68e47f5ec2154aa97ff298d4516ca0caf746e51a (patch)
tree1c794501bf1cf8212c90075e46875f3e3dd53265 /src/command_parse.cpp
parentae6acab1ba3ddc144c599d5434bbcf6f1efa37ad (diff)
Valgrind cleanup: finish destructor creation
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11615 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/command_parse.cpp')
-rw-r--r--src/command_parse.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp
index 3f8f63c48..efc295e5e 100644
--- a/src/command_parse.cpp
+++ b/src/command_parse.cpp
@@ -436,6 +436,9 @@ void CommandParser::RemoveRFCCommands()
dlclose(c->second);
}
RFCCommands.clear();
+ // special case: reload isn't in the RFCCommands list but is allocated anyway
+ Command* reload = cmdlist.find("RELOAD")->second;
+ delete reload;
}
void CommandParser::RemoveCommand(Commandtable::iterator safei, const char* source)