summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorattilamolnar <attilamolnar@hush.com>2012-12-16 16:08:39 +0100
committerattilamolnar <attilamolnar@hush.com>2012-12-16 16:08:39 +0100
commit0383c3dc7aed702f6ad72d40ce8cf06b6dc980dc (patch)
tree00632d673fc345f82f2a6735d4fd1206220026b2 /src
parentd00914ed6f5de67ab69c69e1cd1efa0797b5f62d (diff)
m_callerid Fix memory leak in CallerIDExtInfo::free()
Diffstat (limited to 'src')
-rw-r--r--src/modules/m_callerid.cpp1
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;
}
};