From: Jeremy Harris Date: Sun, 15 Dec 2013 18:36:48 +0000 (+0000) Subject: Fix use of uninitialized variable X-Git-Tag: exim-4_83_RC1~92 X-Git-Url: https://git.exim.org/exim.git/commitdiff_plain/c5430c20d5c3b6fd293b96761ef850d6b301d791 Fix use of uninitialized variable --- diff --git a/src/src/receive.c b/src/src/receive.c index 9205436d3..02db23f94 100644 --- a/src/src/receive.c +++ b/src/src/receive.c @@ -1454,7 +1454,7 @@ BOOL resents_exist = FALSE; uschar *resent_prefix = US""; uschar *blackholed_by = NULL; uschar *blackhole_log_msg = US""; -enum {NOT_TRIED, TMP_REJ, PERM_REJ, ACCEPTED} cutthrough_done; +enum {NOT_TRIED, TMP_REJ, PERM_REJ, ACCEPTED} cutthrough_done = NOT_TRIED; flock_t lock_data; error_block *bad_addresses = NULL; @@ -3956,7 +3956,6 @@ for this message. */ XXX We do not handle queue-only, freezing, or blackholes. */ -cutthrough_done = NOT_TRIED; if(cutthrough_fd >= 0) { uschar * msg= cutthrough_finaldot(); /* Ask the target system to accept the messsage */