From: Thomas Roessler Date: Mon, 17 Sep 2001 10:19:10 +0000 (+0000) Subject: fix #737. X-Git-Tag: mutt-1-3-23-rel~13 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8cf7a4143dfab3e53626cba1cb9a0e69c1f9e06e;p=mutt fix #737. --- diff --git a/send.c b/send.c index a9eb1fa7..c9823b11 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 */