From: Thomas Roessler Date: Mon, 17 Sep 2001 10:19:10 +0000 (+0000) Subject: fix #737. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=866c9ea934a1d2fc96286069a734118d23d85f8f;p=neomutt fix #737. --- diff --git a/send.c b/send.c index a9eb1fa79..c9823b111 100644 --- a/send.c +++ b/send.c @@ -1538,8 +1538,11 @@ full_fcc: if (save_sig) { /* cleanup the second signature structures */ - mutt_free_body (&save_content->parts->next); - save_content->parts = NULL; + if (save_content->parts) + { + mutt_free_body (&save_content->parts->next); + save_content->parts = NULL; + } mutt_free_body (&save_content); /* restore old signature and attachments */