Fix use of uninitialized variable
authorJeremy Harris <jgh146exb@wizmail.org>
Sun, 15 Dec 2013 18:36:48 +0000 (18:36 +0000)
committerJeremy Harris <jgh146exb@wizmail.org>
Sun, 15 Dec 2013 22:22:21 +0000 (22:22 +0000)
src/src/receive.c

index 9205436d335283f2447e861aae0d4afb5aca4efa..02db23f946fe501443314b1258f1ba6249533bed 100644 (file)
@@ -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 */