aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--lib/database.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/database.cc b/lib/database.cc
index 7a8702e2..eadf8a76 100644
--- a/lib/database.cc
+++ b/lib/database.cc
@@ -941,10 +941,12 @@ notmuch_database_compact (const char* path,
goto DONE;
}
- notmuch_database_close(notmuch);
-
DONE:
+ if (notmuch)
+ notmuch_database_destroy (notmuch);
+
talloc_free(local);
+
return ret;
}
#else