mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-19 01:00:41 +01:00
Merge branch 'beta'
This commit is contained in:
commit
f0732cb75b
@ -255,7 +255,12 @@ Version 3.19.0 (rgerhards), 2008-05-06
|
||||
- -c option no longer must be the first option - thanks to varmjofekoj
|
||||
for the patch
|
||||
---------------------------------------------------------------------------
|
||||
Version 3.18.4 (rgerhards), 2008-09-??
|
||||
Version 3.18.5 (rgerhards), 2008-10-??
|
||||
- bugfix: imudp input module could cause segfault on HUP
|
||||
It did not properly de-init a variable acting as a linked list head.
|
||||
That resulted in trying to access freed memory blocks after the HUP.
|
||||
---------------------------------------------------------------------------
|
||||
Version 3.18.4 (rgerhards), 2008-09-18
|
||||
- bugfix: order-of magnitude issue with base-10 size definitions
|
||||
in config file parser. Could lead to invalid sizes, constraints
|
||||
etc for e.g. queue files and any other object whose size was specified
|
||||
|
||||
@ -248,10 +248,14 @@ CODESTARTafterRun
|
||||
net.clearAllowedSenders (net.pAllowedSenders_UDP);
|
||||
net.pAllowedSenders_UDP = NULL;
|
||||
}
|
||||
if(udpLstnSocks != NULL)
|
||||
if(udpLstnSocks != NULL) {
|
||||
net.closeUDPListenSockets(udpLstnSocks);
|
||||
if(pRcvBuf != NULL)
|
||||
udpLstnSocks = NULL;
|
||||
}
|
||||
if(pRcvBuf != NULL) {
|
||||
free(pRcvBuf);
|
||||
pRcvBuf = NULL;
|
||||
}
|
||||
ENDafterRun
|
||||
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user