From ed4e21fb32d214ed9c45d0bd4eac9d3dd8ee6c9d Mon Sep 17 00:00:00 2001 From: Ralph Corderoy Date: Thu, 7 Sep 2017 10:03:25 +0100 Subject: [PATCH 1/1] mhbuildsbr.c: Don't free(3) string then print it; do reverse. Fixes c87ca5cca. --- uip/mhbuildsbr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uip/mhbuildsbr.c b/uip/mhbuildsbr.c index f22db992..7c0e7941 100644 --- a/uip/mhbuildsbr.c +++ b/uip/mhbuildsbr.c @@ -2237,9 +2237,9 @@ expand_pseudoheader (CT ct, CT *text_plain_ct, struct multipart *m, init_decoded_content (reply_ct, infile); if (extract_headers (reply_ct, reply_file, &reply_fp) == NOTOK) { - free (reply_file); inform("failed to extract headers from convert output in %s, " "continuing...", reply_file); + free(reply_file); return; } -- 2.48.1