From 8cf7a4143dfab3e53626cba1cb9a0e69c1f9e06e Mon Sep 17 00:00:00 2001 From: Thomas Roessler Date: Mon, 17 Sep 2001 10:19:10 +0000 Subject: [PATCH] fix #737. --- send.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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 */ -- 2.50.1