summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2009-10-21 12:13:22 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2009-10-21 12:13:22 +0200
commitadb880f17bee807df6058ab3772eed3d35bd8d37 (patch)
tree4d8c56a85adcd9880a8e3ce31c1cce6a7d77d405
parent38f98211cd338697afe72200dd53826113cd43f9 (diff)
parent04ca2611194affee966344db20cdaa7c663f99d9 (diff)
downloadrsyslog-adb880f17bee807df6058ab3772eed3d35bd8d37.tar.gz
rsyslog-adb880f17bee807df6058ab3772eed3d35bd8d37.tar.xz
rsyslog-adb880f17bee807df6058ab3772eed3d35bd8d37.zip
Merge branch 'v4-beta' into beta
-rw-r--r--ChangeLog9
-rw-r--r--runtime/wtp.c2
2 files changed, 7 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 99b1b866..4240fc62 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -140,7 +140,7 @@ Version 4.5.6 [v4-beta] (rgerhards), 2009-09-??
* bugfix: random data could be appended to message
* bugfix: reverse lookup reduction logic in imudp do DNS queries too often
---------------------------------------------------------------------------
-Version 4.5.5 [v4-beta] (rgerhards), 2009-09-??
+Version 4.5.5 [v4-beta] (rgerhards), 2009-10-21
- added $InputTCPServerNotifyOnConnectionClose config directive
see doc for details
- bugfix: debug string larger than 1K were improperly displayed. Max size
@@ -279,7 +279,11 @@ Version 4.5.0 [DEVEL] (rgerhards), 2009-07-02
This could lead to timestamps written in the wrong format, but not to
an abort
---------------------------------------------------------------------------
-Version 4.4.2 [v4-stable] (rgerhards), 2009-09-??
+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
- bugfix: zero-sized UDP messages are no longer processed
@@ -533,6 +537,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 40d031dc..47b99fe8 100644
--- a/runtime/wtp.c
+++ b/runtime/wtp.c
@@ -169,9 +169,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;
}