summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--plugins/imtcp/imtcp.c1
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 64dfd613..87beea2c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,7 @@
---------------------------------------------------------------------------
+Version 6.5.1 [devel] 2012-08-??
+- bugfix: imtcp could abort on exit due to invalid free()
+---------------------------------------------------------------------------
Version 6.5.0 [devel] 2012-08-28
- imrelp now supports non-cancel thread termination
(but now requires at least librelp 1.0.1)
diff --git a/plugins/imtcp/imtcp.c b/plugins/imtcp/imtcp.c
index a3365d44..f021307b 100644
--- a/plugins/imtcp/imtcp.c
+++ b/plugins/imtcp/imtcp.c
@@ -370,7 +370,6 @@ BEGINfreeCnf
CODESTARTfreeCnf
for(inst = pModConf->root ; inst != NULL ; ) {
free(inst->pszBindPort);
- free(inst->pBindRuleset);
free(inst->pszInputName);
del = inst;
inst = inst->next;