diff options
author | Stef Walter <stef@memberwebs.com> | 2007-10-26 03:43:14 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2007-10-26 03:43:14 +0000 |
commit | f81457cf835cc6a1c79f104ea80bf6e50bf7e2ac (patch) | |
tree | 3c4cda2d650ede6821ac9e0bccfbbc82c173be92 /src | |
parent | 899d91e7fe956341a805b3744037530afc6d210f (diff) |
Fix uninitialized pid variable.
Diffstat (limited to 'src')
-rw-r--r-- | src/proxsmtpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |