diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2013-07-15 15:22:59 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-07-15 15:24:11 +0200 |
commit | b6d350ab9c212923dcfcf3b160af83b3c078f1bc (patch) | |
tree | a265205d8c6ef9b6aea0c307881e94633b71ccf9 /grammar/rainerscript.h | |
parent | 495ae8752084b896f29d92e33028f44269e1d1b1 (diff) | |
download | rsyslog-b6d350ab9c212923dcfcf3b160af83b3c078f1bc.tar.gz rsyslog-b6d350ab9c212923dcfcf3b160af83b3c078f1bc.tar.bz2 rsyslog-b6d350ab9c212923dcfcf3b160af83b3c078f1bc.zip |
fix regression that caused freeInstance not to be correctly called
was introduced July, 5th 2013 by commit 8ee2b0b1610fbf4dff20453d188f379583410b42
Diffstat (limited to 'grammar/rainerscript.h')
-rw-r--r-- | grammar/rainerscript.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grammar/rainerscript.h b/grammar/rainerscript.h index 31b2eb93..d00cc4c3 100644 --- a/grammar/rainerscript.h +++ b/grammar/rainerscript.h @@ -331,7 +331,7 @@ struct cnfstmt * cnfstmtNewSet(char *var, struct cnfexpr *expr); struct cnfstmt * cnfstmtNewUnset(char *var); struct cnfstmt * cnfstmtNewCall(es_str_t *name); struct cnfstmt * cnfstmtNewContinue(void); -void cnfstmtDestruct(struct cnfstmt *root); +void cnfstmtDestructLst(struct cnfstmt *root); void cnfstmtOptimize(struct cnfstmt *root); struct cnfarray* cnfarrayNew(es_str_t *val); struct cnfarray* cnfarrayDup(struct cnfarray *old); |