From c104eea4e5d0aeb4c87ee23fab8532530d5fe0e9 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Fri, 9 Oct 2009 14:06:51 +0200 Subject: preparing for 4.4.2 release --- ChangeLog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 5606b68c..3b16824d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,5 @@ --------------------------------------------------------------------------- -Version 4.4.2 [v4-stable] (rgerhards), 2009-09-?? +Version 4.4.2 [v4-stable] (rgerhards), 2009-10-09 - bugfix: invalid handling of zero-sized messages, could lead to mis- addressing and potential memory corruption/segfault - bugfix: zero-sized UDP messages are no longer processed -- cgit From 8e45fd5c8e7df45532c5d239676cd92107c9e942 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Tue, 20 Oct 2009 11:05:02 +0200 Subject: bugfix: potential hang condition on queue shutdown --- ChangeLog | 1 + runtime/wtp.c | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index e31d56d7..a3946c2a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,7 @@ Version 3.22.2 [v3-stable] (rgerhards), 2009-07-?? - enhance: imrelp now also provides remote peer's IP address [if librelp != 1.0.0 is used] - bugfix: sending syslog messages with zip compression did not work +- bugfix: potential hang condition on queue shutdown - clarified use of $ActionsSendStreamDriver[AuthMode/PermittedPeers] in doc set (require TLS drivers) --------------------------------------------------------------------------- diff --git a/runtime/wtp.c b/runtime/wtp.c index 3beae271..fcecc4f2 100644 --- a/runtime/wtp.c +++ b/runtime/wtp.c @@ -171,9 +171,7 @@ wtpWakeupAllWrkr(wtp_t *pThis) DEFiRet; ISOBJ_TYPE_assert(pThis, wtp); - d_pthread_mutex_lock(pThis->pmutUsr); pthread_cond_broadcast(pThis->pcondBusy); - d_pthread_mutex_unlock(pThis->pmutUsr); RETiRet; } -- cgit From 24d5ecc891752003e63ff39e946b1b17a81a886b Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Tue, 20 Oct 2009 11:09:20 +0200 Subject: added imported bugfix to changelog --- ChangeLog | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ChangeLog b/ChangeLog index b624c22a..812c814c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -16,6 +16,8 @@ Version 4.4.2 [v4-stable] (rgerhards), 2009-10-09 The end result of this bug could be a higher UDP message loss rate than necessary (note that UDP message loss can not totally be avoided due to the UDP spec) +- bugfix: potential hang condition on queue shutdown + [imported from v3-stable] --------------------------------------------------------------------------- Version 4.4.1 [v4-stable] (rgerhards), 2009-09-02 - features requiring Java are automatically disabled if Java is not -- cgit From 9407f2a3e08940d0dd0367c5904654f5a56117af Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Tue, 20 Oct 2009 15:12:00 +0200 Subject: bumped version number --- ChangeLog | 6 ++++-- configure.ac | 2 +- doc/manual.html | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 812c814c..a4d1a6e0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,8 @@ --------------------------------------------------------------------------- +Version 4.4.3 [v4-stable] (rgerhards), 2009-10-?? +- bugfix: potential hang condition on queue shutdown + [imported from v3-stable] +--------------------------------------------------------------------------- Version 4.4.2 [v4-stable] (rgerhards), 2009-10-09 - bugfix: invalid handling of zero-sized messages, could lead to mis- addressing and potential memory corruption/segfault @@ -16,8 +20,6 @@ Version 4.4.2 [v4-stable] (rgerhards), 2009-10-09 The end result of this bug could be a higher UDP message loss rate than necessary (note that UDP message loss can not totally be avoided due to the UDP spec) -- bugfix: potential hang condition on queue shutdown - [imported from v3-stable] --------------------------------------------------------------------------- Version 4.4.1 [v4-stable] (rgerhards), 2009-09-02 - features requiring Java are automatically disabled if Java is not diff --git a/configure.ac b/configure.ac index 66a2d70d..915851a1 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.61) -AC_INIT([rsyslog],[4.4.2],[rsyslog@lists.adiscon.com]) +AC_INIT([rsyslog],[4.4.3],[rsyslog@lists.adiscon.com]) AM_INIT_AUTOMAKE AC_CONFIG_SRCDIR([ChangeLog]) AC_CONFIG_MACRO_DIR([m4]) diff --git a/doc/manual.html b/doc/manual.html index 5d43cb25..6c5aba30 100644 --- a/doc/manual.html +++ b/doc/manual.html @@ -19,7 +19,7 @@ rsyslog support available directly from the source!

Please visit the rsyslog sponsor's page to honor the project sponsors or become one yourself! We are very grateful for any help towards the project goals.

-

This documentation is for version 4.4.2 (v4-stable) of rsyslog. +

This documentation is for version 4.4.3 (v4-stable) of rsyslog. Visit the rsyslog status page to obtain current version information and project status.

If you like rsyslog, you might -- cgit