]> git.cworth.org Git - notmuch/blobdiff - lib/database.cc
lib/database: propagate status code from _notmuch_message_delete
[notmuch] / lib / database.cc
index c05d70d34842f1fd1f264cc61a45fbb6348b95ca..d1e5f1af534b8fca594399add8a976a0f8f9bc1b 100644 (file)
@@ -1456,7 +1456,7 @@ notmuch_database_remove_message (notmuch_database_t *notmuch,
     if (status == NOTMUCH_STATUS_SUCCESS && message) {
        status = _notmuch_message_remove_filename (message, filename);
        if (status == NOTMUCH_STATUS_SUCCESS)
-           _notmuch_message_delete (message);
+           status = _notmuch_message_delete (message);
        else if (status == NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID)
            _notmuch_message_sync (message);