diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-19 04:09:38 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-19 04:09:38 +0000 |
commit | f3e45bfb0e74d431fcb4a2fcd0c024f73f73e7c2 (patch) | |
tree | 490a6efe0f5e4d06e5bd2e31ca33bf931544fc6b /src/inspircd.cpp | |
parent | 33141a0825e7cf2dcd0cae63da8943626d8a06b6 (diff) |
Valgrind now runs completely clean.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11916 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r-- | src/inspircd.cpp | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 862aa31d0..8b1bd3e44 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -90,16 +90,13 @@ template<typename T> static void DeleteZero(T*&n) void InspIRCd::Cleanup() { - if (Config) + for (unsigned int i = 0; i < ports.size(); i++) { - for (unsigned int i = 0; i < ports.size(); i++) - { - /* This calls the constructor and closes the listening socket */ - delete ports[i]; - } - - ports.clear(); + /* This calls the constructor and closes the listening socket */ + ports[i]->cull(); + delete ports[i]; } + ports.clear(); /* Close all client sockets, or the new process inherits them */ std::vector<User*>::reverse_iterator i = Users->local_users.rbegin(); |