From f81457cf835cc6a1c79f104ea80bf6e50bf7e2ac Mon Sep 17 00:00:00 2001 From: Stef Walter Date: Fri, 26 Oct 2007 03:43:14 +0000 Subject: Fix uninitialized pid variable. --- src/proxsmtpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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; -- cgit v1.2.3