diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-09-02 00:47:29 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-09-02 00:47:29 +0000 |
commit | 771016b99723ae1b4924b85297817a7957563981 (patch) | |
tree | 0064bed1e091e58162a97caa0ea356a7155a3c31 /src | |
parent | 8085aa879bd989b526791797910295944a364084 (diff) |
More deallocation-at-exit cleanup
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11621 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/inspircd.cpp | 1 | ||||
-rw-r--r-- | src/modules/m_dccallow.cpp | 2 | ||||
-rw-r--r-- | src/modules/m_xline_db.cpp | 1 | ||||
-rw-r--r-- | src/server.cpp | 1 |
4 files changed, 5 insertions, 0 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 120ee2be8..b8192d387 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -150,6 +150,7 @@ void InspIRCd::Cleanup() DeleteZero(this->PI); DeleteZero(this->Threads); DeleteZero(this->Timers); + DeleteZero(this->SE); /* Close logging */ this->Logs->CloseLogs(); DeleteZero(this->Logs); diff --git a/src/modules/m_dccallow.cpp b/src/modules/m_dccallow.cpp index 97f0d2f13..ab6789049 100644 --- a/src/modules/m_dccallow.cpp +++ b/src/modules/m_dccallow.cpp @@ -470,6 +470,8 @@ class ModuleDCCAllow : public Module virtual ~ModuleDCCAllow() { + delete Conf; + Conf = NULL; } virtual Version GetVersion() diff --git a/src/modules/m_xline_db.cpp b/src/modules/m_xline_db.cpp index 09a8c242d..d3a75a64c 100644 --- a/src/modules/m_xline_db.cpp +++ b/src/modules/m_xline_db.cpp @@ -232,6 +232,7 @@ class ModuleXLineDB : public Module } } + fclose(f); return true; } diff --git a/src/server.cpp b/src/server.cpp index c5223561a..cc04d0223 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -43,6 +43,7 @@ void InspIRCd::Exit(int status) { this->SendError("Exiting with status " + ConvToStr(status) + " (" + std::string(ExitCodes[status]) + ")"); this->Cleanup(); + delete this; } exit (status); } |