summaryrefslogtreecommitdiffstats
path: root/tools/omfwd.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2009-07-13 15:58:30 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2009-07-13 15:58:30 +0200
commit76b3fb796022ae249ae77db5288ceec542e7efa2 (patch)
tree847b095404ddd06fcfceaa023cbb65f30c95ff6a /tools/omfwd.c
parent7d703b82ff2649cf11c5245e1d0515659bffeb8d (diff)
parentddd427cf5cb6fea314845940ff1ada8b0bb51b31 (diff)
downloadrsyslog-76b3fb796022ae249ae77db5288ceec542e7efa2.tar.gz
rsyslog-76b3fb796022ae249ae77db5288ceec542e7efa2.tar.xz
rsyslog-76b3fb796022ae249ae77db5288ceec542e7efa2.zip
Merge branch 'beta'
Diffstat (limited to 'tools/omfwd.c')
-rw-r--r--tools/omfwd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/omfwd.c b/tools/omfwd.c
index f21bb5c8..a7c4e769 100644
--- a/tools/omfwd.c
+++ b/tools/omfwd.c
@@ -436,11 +436,11 @@ CODESTARTdoAction
*/
if(pData->compressionLevel && (l > MIN_SIZE_FOR_COMPRESS)) {
Bytef *out;
- uLongf destLen = sizeof(out) / sizeof(Bytef);
+ uLongf destLen = iMaxLine + iMaxLine/100 +12; /* recommended value from zlib doc */
uLong srcLen = l;
int ret;
/* TODO: optimize malloc sequence? -- rgerhards, 2008-09-02 */
- CHKmalloc(out = (Bytef*) malloc(iMaxLine + iMaxLine/100 + 12));
+ CHKmalloc(out = (Bytef*) malloc(destLen));
out[0] = 'z';
out[1] = '\0';
ret = compress2((Bytef*) out+1, &destLen, (Bytef*) psz,