]> granicus.if.org Git - neomutt/commitdiff
Context might be NULL - avoid dereferencing it
authorPietro Cerutti <gahr@gahr.ch>
Thu, 14 Dec 2017 07:47:31 +0000 (07:47 +0000)
committerRichard Russon <rich@flatcap.org>
Thu, 14 Dec 2017 12:56:08 +0000 (12:56 +0000)
Issue #999

sendlib.c

index dcc3081ad3863e95ff405a5f48e54c6eabe1da33..9896901af2b16f6af95096ebc75715a2a561d53f 100644 (file)
--- a/sendlib.c
+++ b/sendlib.c
@@ -3143,7 +3143,7 @@ int mutt_write_fcc(const char *path, struct Header *hdr, const char *msgid,
 done:
   /* We ran a folder hook for the destination mailbox,
    * now we run it for the user's current mailbox */
-  if (Context->path)
+  if (Context && Context->path)
     mutt_folder_hook(Context->path);
 
   return rc;