summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2012-06-25 12:55:54 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2012-06-25 12:55:54 +0200
commitc23ddc0aef3493cd7de31a6c43ee985f751a06cf (patch)
tree745afb9d0d84d6298950cf8b999f374f704cef56 /runtime
parentbf85d81790a26945e404c6fdfdddad5eadbaa371 (diff)
downloadrsyslog-c23ddc0aef3493cd7de31a6c43ee985f751a06cf.tar.gz
rsyslog-c23ddc0aef3493cd7de31a6c43ee985f751a06cf.tar.xz
rsyslog-c23ddc0aef3493cd7de31a6c43ee985f751a06cf.zip
cleanup & fix of mini-leak
Diffstat (limited to 'runtime')
-rw-r--r--runtime/rsconf.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/runtime/rsconf.c b/runtime/rsconf.c
index affa2dd5..9ee13dd4 100644
--- a/runtime/rsconf.c
+++ b/runtime/rsconf.c
@@ -175,13 +175,11 @@ freeCnf(rsconf_t *pThis)
/* destructor for the rsconf object */
BEGINobjDestruct(rsconf) /* be sure to specify the object type also in END and CODESTART macros! */
CODESTARTobjDestruct(rsconf)
-dbgprintf("AAA: rsconfObjDesctruct called\n");
freeCnf(pThis);
tplDeleteAll(pThis);
free(pThis->globals.mainQ.pszMainMsgQFName);
free(pThis->globals.pszConfDAGFile);
llDestroy(&(pThis->rulesets.llRulesets));
-dbgprintf("AAA: rsconfObjDesctruct exit\n");
ENDobjDestruct(rsconf)