From 0383c3dc7aed702f6ad72d40ce8cf06b6dc980dc Mon Sep 17 00:00:00 2001 From: attilamolnar Date: Sun, 16 Dec 2012 16:08:39 +0100 Subject: [PATCH] m_callerid Fix memory leak in CallerIDExtInfo::free() --- src/modules/m_callerid.cpp | 1 + 1 file changed, 1 insertion(+) 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; } }; -- 2.39.5