mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-18 07:30:42 +01:00
fixed a memory leak when sending messages in zip-compressed format
Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
This commit is contained in:
parent
a65f638523
commit
009738a0ac
@ -1,3 +1,5 @@
|
||||
- fixed a memory leak when sending messages in zip-compressed format
|
||||
Thanks to Naoya Nakazawa for analyzing this issue and providing a patch.
|
||||
---------------------------------------------------------------------------
|
||||
Version 4.5.7 [v4-beta] (rgerhards), 2009-11-18
|
||||
- added a so-called "On Demand Debug" mode, in which debug output can
|
||||
|
||||
@ -483,6 +483,12 @@ CODESTARTdoAction
|
||||
}
|
||||
}
|
||||
finalize_it:
|
||||
# ifdef USE_NETZIP
|
||||
if(psz != (char*) ppString[0]) {
|
||||
/* we need to free temporary buffer, alloced above - Naoya Nakazawa, 2010-01-11 */
|
||||
free(psz);
|
||||
}
|
||||
# endif
|
||||
ENDdoAction
|
||||
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user