From f336ee034be3c9518883dfb34db27529f4a4b83b Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sun, 22 Nov 2009 03:55:39 +0100 Subject: [PATCH] get_timestamp: Ensure that return value is 0 in case of exception. Just to be on the safe side of things. --- lib/database.cc | 1 + 1 file changed, 1 insertion(+) 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; } -- 2.43.0