summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2011-12-20 18:17:45 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2011-12-20 18:17:45 +0100
commit8d2f6675c47c0b7b6d7c644004507d0a85a90cb4 (patch)
treefc39d873b125fe66bd6b00849ef30628094a8f45 /runtime
parent5ba3fc7238c49f8317ba4d694091d8a191744ed5 (diff)
downloadrsyslog-8d2f6675c47c0b7b6d7c644004507d0a85a90cb4.tar.gz
rsyslog-8d2f6675c47c0b7b6d7c644004507d0a85a90cb4.tar.xz
rsyslog-8d2f6675c47c0b7b6d7c644004507d0a85a90cb4.zip
bugfix: stats counter were not properly initialized on creation
Diffstat (limited to 'runtime')
-rw-r--r--runtime/statsobj.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/statsobj.c b/runtime/statsobj.c
index e1a89cf4..131605e0 100644
--- a/runtime/statsobj.c
+++ b/runtime/statsobj.c
@@ -154,9 +154,11 @@ addCounter(statsobj_t *pThis, uchar *ctrName, statsCtrType_t ctrType, void *pCtr
switch(ctrType) {
case ctrType_IntCtr:
ctr->val.pIntCtr = (intctr_t*) pCtr;
+ *(ctr->val.pIntCtr) = 0;
break;
case ctrType_Int:
ctr->val.pInt = (int*) pCtr;
+ *(ctr->val.pInt) = 0;
break;
}
addCtrToList(pThis, ctr);