diff options
| author | 2008-04-21 16:59:23 +0000 | |
|---|---|---|
| committer | 2008-04-21 16:59:23 +0000 | |
| commit | 98659aa0dcac7636627846555ef7d5f807152b7e (patch) | |
| tree | 4726b3771ad6874862f2ff7b503264eed617f8d4 /src/xline.cpp | |
| parent | Remove the craqy self-restarting loop in trunk, and use proper safe iterators... (diff) | |
| download | inspircd++-98659aa0dcac7636627846555ef7d5f807152b7e.tar.gz inspircd++-98659aa0dcac7636627846555ef7d5f807152b7e.tar.bz2 inspircd++-98659aa0dcac7636627846555ef7d5f807152b7e.zip | |
Merge in large patchset from GreenReaper, useful fixes for freeing a ton of different things on shutdown for tidyness, and a few stack corruption fixes in the mode handler
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9565 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/xline.cpp')
| -rw-r--r-- | src/xline.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/xline.cpp b/src/xline.cpp index 47e122420..610af2e6c 100644 --- a/src/xline.cpp +++ b/src/xline.cpp @@ -391,6 +391,18 @@ XLineManager::~XLineManager() delete KFact; delete QFact; delete ZFact; + + // Delete all existing XLines + for (XLineContainer::iterator i = lookup_lines.begin(); i != lookup_lines.end(); i++) + { + for (XLineLookup::iterator j = i->second.begin(); j != i->second.end(); j++) + { + delete j->second; + } + i->second.clear(); + } + lookup_lines.clear(); + } void XLine::Apply(User* u) |
