summaryrefslogtreecommitdiffstats
path: root/action.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2012-09-25 13:48:42 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2012-09-25 13:48:42 +0200
commit7dea4b3f324d9f99b57fd574f149b558d8804d6c (patch)
tree27ef0205d3b06ce961820dce07dabbca0ad815c6 /action.c
parent6b9457c4d73f9732645094d2efed85e02b1f9d03 (diff)
downloadrsyslog-7dea4b3f324d9f99b57fd574f149b558d8804d6c.tar.gz
rsyslog-7dea4b3f324d9f99b57fd574f149b558d8804d6c.tar.bz2
rsyslog-7dea4b3f324d9f99b57fd574f149b558d8804d6c.zip
fix optimizer-introduced memleak in action destruction
Diffstat (limited to 'action.c')
-rw-r--r--action.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/action.c b/action.c
index 8d3239b6..8a3d8920 100644
--- a/action.c
+++ b/action.c
@@ -1616,7 +1616,8 @@ DEFFUNC_llExecFunc(doActivateActions)
}
actionDisable(pThis);
}
- DBGPRINTF("Action %p: queue %p started\n", pThis, pThis->pQueue);
+ DBGPRINTF("Action %s[%p]: queue %p started\n", modGetName(pThis->pMod),
+ pThis, pThis->pQueue);
ENDfunc
return RS_RET_OK; /* we ignore errors, we can not do anything either way */
}