summaryrefslogtreecommitdiff
path: root/tools/omfwd.c
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2010-04-07 12:11:52 +0200
committerMichael Biebl <biebl@debian.org>2010-04-07 12:11:52 +0200
commit0c3924200ff23e6444058f01b2b7446cde6e1581 (patch)
tree08967d6f21a0f578d03a92a802343a1313450534 /tools/omfwd.c
parent4af6f89dda61bb5acd862b805302542d9c0da005 (diff)
downloadrsyslog-0c3924200ff23e6444058f01b2b7446cde6e1581.tar.gz
Imported Upstream version 4.6.2upstream/4.6.2
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 a6d83eb..cbfc36a 100644
--- a/tools/omfwd.c
+++ b/tools/omfwd.c
@@ -411,7 +411,7 @@ CODESTARTtryResume
ENDtryResume
BEGINdoAction
- char *psz; /* temporary buffering */
+ char *psz = NULL; /* temporary buffering */
register unsigned l;
int iMaxLine;
CODESTARTdoAction
@@ -487,7 +487,7 @@ CODESTARTdoAction
}
finalize_it:
# ifdef USE_NETZIP
- if(psz != (char*) ppString[0]) {
+ if((psz != NULL) && (psz != (char*) ppString[0])) {
/* we need to free temporary buffer, alloced above - Naoya Nakazawa, 2010-01-11 */
free(psz);
}