]> git.cworth.org Git - notmuch/blobdiff - notmuch-dump.c
notmuch-dump.c: Fix output file being closed twice
[notmuch] / notmuch-dump.c
index ef2f02dfeb5cb5cc470da3462f75d6122f488f95..70cdb0c21718f8f0738760a0ed8d3e5a0486f44f 100644 (file)
@@ -329,13 +329,15 @@ notmuch_database_dump (notmuch_database_t *notmuch,
        }
     }
 
-    if (gzclose_w (output) != Z_OK) {
+    ret = gzclose_w (output);
+    if (ret) {
        fprintf (stderr, "Error closing %s: %s\n", name_for_error,
                 gzerror (output, NULL));
        ret = EXIT_FAILURE;
        output = NULL;
        goto DONE;
-    }
+    } else
+        output = NULL;
 
     if (output_file_name) {
        ret = rename (tempname, output_file_name);