]> granicus.if.org Git - neomutt/commitdiff
Move mbox close-append logic inside mbox_close_mailbox().
authorKevin McCarthy <kevin@8t8.us>
Tue, 8 Nov 2016 20:42:56 +0000 (12:42 -0800)
committerKevin McCarthy <kevin@8t8.us>
Tue, 8 Nov 2016 20:42:56 +0000 (12:42 -0800)
The mx_fastclose_mailbox() calls mx_ops->close(), which invokes
mbox_close_mailbox().

Also, close the ctx->fp inside mbox_close_mailbox().  This way, the
(to be added) compress logic can call the mx_ops->close() instead of
"knowing" to close the fp before recompressing.

mx_fastclose_mailbox() will safe_fclose() the fp again, but I'm
leaving it there just in case I missed a usage of the fp in some other
part of the code.

Thanks to Damien Riegel for the original patch.

mbox.c
mx.c

diff --git a/mbox.c b/mbox.c
index d3c2ec46a7d8f8b55b85e3ee30cf2d7e60787ad7..13fc3d626df4e99d95999d78761b2b4b27cd3fda 100644 (file)
--- a/mbox.c
+++ b/mbox.c
@@ -465,6 +465,14 @@ static int mbox_open_mailbox_append (CONTEXT *ctx, int flags)
 
 static int mbox_close_mailbox (CONTEXT *ctx)
 {
+  if (ctx->append)
+  {
+    mx_unlock_file (ctx->path, fileno (ctx->fp), 1);
+    mutt_unblock_signals ();
+  }
+
+  safe_fclose (&ctx->fp);
+
   return 0;
 }
 
diff --git a/mx.c b/mx.c
index 8f1b397e51e3e5fea44a70a831bd49be8d8ae252..680d38f40abc2ac2181a3faac6cd9999a9230197 100644 (file)
--- a/mx.c
+++ b/mx.c
@@ -514,15 +514,6 @@ static int mx_open_mailbox_append (CONTEXT *ctx, int flags)
   return ctx->mx_ops->open_append (ctx, flags);
 }
 
-/* close a mailbox opened in write-mode */
-static int mx_close_mailbox_append (CONTEXT *ctx)
-{
-  mx_unlock_file (ctx->path, fileno (ctx->fp), 1);
-  mutt_unblock_signals ();
-  mx_fastclose_mailbox (ctx);
-  return 0;
-}
-
 /*
  * open a mailbox and parse it
  *
@@ -793,23 +784,12 @@ int mx_close_mailbox (CONTEXT *ctx, int *index_hint)
 
   ctx->closing = 1;
 
-  if (ctx->readonly || ctx->dontwrite)
+  if (ctx->readonly || ctx->dontwrite || ctx->append)
   {
-    /* mailbox is readonly or we don't want to write */
     mx_fastclose_mailbox (ctx);
     return 0;
   }
 
-  if (ctx->append)
-  {
-    /* mailbox was opened in write-mode */
-    if (ctx->magic == MUTT_MBOX || ctx->magic == MUTT_MMDF)
-      mx_close_mailbox_append (ctx);
-    else
-      mx_fastclose_mailbox (ctx);
-    return 0;
-  }
-
   for (i = 0; i < ctx->msgcount; i++)
   {
     if (!ctx->hdrs[i]->deleted && ctx->hdrs[i]->read