summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2013-12-15 18:36:48 +0000
committerJeremy Harris <jgh146exb@wizmail.org>2013-12-15 22:22:21 +0000
commitc5430c20d5c3b6fd293b96761ef850d6b301d791 (patch)
tree9ff9b452ad87c89c5a2101ff19be0d89cd541ab5 /src
parent89f2a2697c74fde51754770ae3b3971e5c3e6082 (diff)
Fix use of uninitialized variable
Diffstat (limited to 'src')
-rw-r--r--src/src/receive.c3
1 files changed, 1 insertions, 2 deletions
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 */