diff options
author | attilamolnar <attilamolnar@hush.com> | 2012-12-16 16:08:39 +0100 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2012-12-16 16:08:39 +0100 |
commit | 0383c3dc7aed702f6ad72d40ce8cf06b6dc980dc (patch) | |
tree | 00632d673fc345f82f2a6735d4fd1206220026b2 | |
parent | d00914ed6f5de67ab69c69e1cd1efa0797b5f62d (diff) |
m_callerid Fix memory leak in CallerIDExtInfo::free()
-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; } }; |