diff options
author | Michael Biebl <biebl@debian.org> | 2011-10-21 17:03:33 +0200 |
---|---|---|
committer | Michael Biebl <biebl@debian.org> | 2011-10-21 17:03:33 +0200 |
commit | a7a3afdd81c8809fbc4927b360e1cb59e2e16b2e (patch) | |
tree | 87efee7c0a74d351e4d88e52a5b84fbd4b3b191d /action.c | |
parent | ae82a633a4d42dfdc942d8f0f4f5e6470f13797e (diff) | |
download | rsyslog-a7a3afdd81c8809fbc4927b360e1cb59e2e16b2e.tar.gz |
Imported Upstream version 5.8.6upstream/5.8.6
Diffstat (limited to 'action.c')
-rw-r--r-- | action.c | 19 |
1 files changed, 9 insertions, 10 deletions
@@ -767,7 +767,7 @@ finalize_it: */ static rsRetVal releaseBatch(action_t *pAction, batch_t *pBatch) { - int iArr; + int jArr; int i, j; batch_obj_t *pElem; uchar ***ppMsgs; @@ -781,15 +781,15 @@ static rsRetVal releaseBatch(action_t *pAction, batch_t *pBatch) switch(pAction->eParamPassing) { case ACT_ARRAY_PASSING: ppMsgs = (uchar***) pElem->staticActParams; - for(i = 0 ; i < pAction->iNumTpls ; ++i) { - if(((uchar**)ppMsgs)[i] != NULL) { - iArr = 0; - while(ppMsgs[i][iArr] != NULL) { - d_free(ppMsgs[i][iArr++]); - ppMsgs[i][iArr++] = NULL; + for(j = 0 ; j < pAction->iNumTpls ; ++j) { + if(((uchar**)ppMsgs)[j] != NULL) { + jArr = 0; + while(ppMsgs[j][jArr] != NULL) { + d_free(ppMsgs[j][jArr++]); + ppMsgs[j][jArr++] = NULL; } - d_free(((uchar**)ppMsgs)[i]); - ((uchar**)ppMsgs)[i] = NULL; + d_free(((uchar**)ppMsgs)[j]); + ((uchar**)ppMsgs)[j] = NULL; } } break; @@ -1363,7 +1363,6 @@ actionWriteToAction(action_t *pAction) DBGPRINTF("action not yet ready again to be executed, onceInterval %d, tCurr %d, tNext %d\n", (int) pAction->iSecsExecOnceInterval, (int) getActNow(pAction), (int) (pAction->iSecsExecOnceInterval + pAction->tLastExec)); - pAction->tLastExec = getActNow(pAction); /* re-init time flags */ FINALIZE; } |