diff options
Diffstat (limited to 'mailtrain.c')
-rw-r--r-- | mailtrain.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mailtrain.c b/mailtrain.c index 08f0534..0df0321 100644 --- a/mailtrain.c +++ b/mailtrain.c @@ -131,7 +131,7 @@ static int process_tmpdir(struct mailbox_transaction_context *ctx, buf = t_malloc(20 + ast->tmplen); - while (cnt > 0) { + while (rc == 0 && cnt > 0) { cnt--; i_snprintf(buf, 20 + ast->tmplen - 1, "%s/%d", ast->tmpdir, cnt); @@ -144,8 +144,9 @@ static int process_tmpdir(struct mailbox_transaction_context *ctx, "failed to send mail"); debug("run program failed with exit code %d\n", rc); rc = -1; - break; } + + close(fd); } t_pop(); |