From: Carl Worth Date: Sun, 22 Nov 2009 02:55:39 +0000 (+0100) Subject: get_timestamp: Ensure that return value is 0 in case of exception. X-Git-Tag: 0.1~374 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=f336ee034be3c9518883dfb34db27529f4a4b83b get_timestamp: Ensure that return value is 0 in case of exception. Just to be on the safe side of things. --- diff --git a/lib/database.cc b/lib/database.cc index bcea88b0..169dc5e2 100644 --- a/lib/database.cc +++ b/lib/database.cc @@ -648,6 +648,7 @@ notmuch_database_get_timestamp (notmuch_database_t *notmuch, const char *key) ret = Xapian::sortable_unserialise (doc.get_value (NOTMUCH_VALUE_TIMESTAMP)); } catch (Xapian::Error &error) { + ret = 0; goto DONE; }