get_timestamp: Ensure that return value is 0 in case of exception.

Just to be on the safe side of things.
This commit is contained in:
Carl Worth 2009-11-22 03:55:39 +01:00
parent e2341cbc09
commit f336ee034b

View file

@ -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;
}