summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--runtime/ruleset.c1
2 files changed, 3 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 6513fe79..da83c940 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -505,6 +505,8 @@ Version 4.6.3 [v4-stable] (rgerhards), 2010-03-??
robustness
- added new configure option that permits to disable and enable an
extended testbench
+- bugfix: segfault on HUP when "HUPIsRestart" was set to "on"
+ thanks varmojfekoj for the patch
- bugfix: default for $OMFileFlushOnTXEnd was wrong ("off").
This, in default mode, caused buffered writing to be used, what
means that it looked like no output were written or partial
diff --git a/runtime/ruleset.c b/runtime/ruleset.c
index df7f8daa..0584e8d6 100644
--- a/runtime/ruleset.c
+++ b/runtime/ruleset.c
@@ -448,6 +448,7 @@ destructAllActions(void)
CHKiRet(llDestroy(&llRulesets));
CHKiRet(llInit(&llRulesets, rulesetDestructForLinkedList, keyDestruct, strcasecmp));
+ pDfltRuleset = NULL;
finalize_it:
RETiRet;