diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/proxsmtpd.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,6 @@ 1.8 - Send an RSET to the server after filter fails an email. + - Fix an uninitialized pid variable. 1.7 [2007-05-28] - Use my real name 'Stef Walter' diff --git a/src/proxsmtpd.c b/src/proxsmtpd.c index ffccf71..7b7430f 100644 --- a/src/proxsmtpd.c +++ b/src/proxsmtpd.c @@ -437,7 +437,7 @@ cleanup: static int process_file_command(spctx_t* sp) { - pid_t pid; + pid_t pid = 0; int ret = 0, status, r; struct timeval timeout; |