diff options
| author | 2012-12-16 16:08:39 +0100 | |
|---|---|---|
| committer | 2012-12-16 16:08:39 +0100 | |
| commit | 0383c3dc7aed702f6ad72d40ce8cf06b6dc980dc (patch) | |
| tree | 00632d673fc345f82f2a6735d4fd1206220026b2 /src/modules/m_callerid.cpp | |
| parent | Add a flag to Command that controls whether an empty last parameter is allowe... (diff) | |
| download | inspircd++-0383c3dc7aed702f6ad72d40ce8cf06b6dc980dc.tar.gz inspircd++-0383c3dc7aed702f6ad72d40ce8cf06b6dc980dc.tar.bz2 inspircd++-0383c3dc7aed702f6ad72d40ce8cf06b6dc980dc.zip | |
m_callerid Fix memory leak in CallerIDExtInfo::free()
Diffstat (limited to 'src/modules/m_callerid.cpp')
| -rw-r--r-- | src/modules/m_callerid.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules/m_callerid.cpp b/src/modules/m_callerid.cpp index adf66b79a..7f843f252 100644 --- a/src/modules/m_callerid.cpp +++ b/src/modules/m_callerid.cpp @@ -119,6 +119,7 @@ struct CallerIDExtInfo : public ExtensionItem if (it2 != targ->wholistsme.end()) targ->wholistsme.erase(it2); } + delete dat; } }; |
