diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2012-09-25 13:48:42 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2012-09-25 13:48:42 +0200 |
commit | 7dea4b3f324d9f99b57fd574f149b558d8804d6c (patch) | |
tree | 27ef0205d3b06ce961820dce07dabbca0ad815c6 /action.c | |
parent | 6b9457c4d73f9732645094d2efed85e02b1f9d03 (diff) | |
download | rsyslog-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.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 */ } |