summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2010-03-23 14:11:50 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2010-03-23 14:11:50 +0100
commitf8dee56243d7378864fdcdcc21262fc563639827 (patch)
treedf84fd60c6f8c959981a75a557add64b5a4d9cc1 /ChangeLog
parent41552fbc5061072f0da0548b84f4da99a6eca2ed (diff)
downloadrsyslog-f8dee56243d7378864fdcdcc21262fc563639827.tar.gz
rsyslog-f8dee56243d7378864fdcdcc21262fc563639827.tar.xz
rsyslog-f8dee56243d7378864fdcdcc21262fc563639827.zip
bugfix: potential re-use of free()ed file stream object in omfile
when dynaCache is enabled, the cache is full, a new entry needs to be allocated, thus the LRU discarded, then a new entry is opend and that fails. In that case, it looks like the discarded stream may be reused improperly (based on code analysis, test case and confirmation pending)
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index dc12e856..7507208d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,11 @@
Version 4.6.2 [v4-stable] (rgerhards), 2010-03-??
- new feature: "." action type added to support writing files to relative
pathes (this is primarily meant as a debug aid)
+- bugfix: potential re-use of free()ed file stream object in omfile
+ when dynaCache is enabled, the cache is full, a new entry needs to
+ be allocated, thus the LRU discarded, then a new entry is opend and that
+ fails. In that case, it looks like the discarded stream may be reused
+ improperly (based on code analysis, test case and confirmation pending)
- added new property replacer option "date-rfc3164-buggyday" primarily
to ease migration from syslog-ng. See property replacer doc for
details. [backport from 5.5.3 because urgently needed by some]