]> git.cworth.org Git - notmuch/commit
Prevent segmentation fault in notmuch_database_close
authorJustus Winter <4winter@informatik.uni-hamburg.de>
Sat, 18 Feb 2012 23:56:57 +0000 (00:56 +0100)
committerDavid Bremner <bremner@debian.org>
Tue, 21 Feb 2012 03:03:25 +0000 (23:03 -0400)
commite2e95caa51f8c1ea57b4fc7d3926fda1fb1aed10
tree95b301d0ad3ffabcec6a7bf56bb70ca190c4be9a
parent0b2ff308ece7e45a32a9e5a98d400b268278071a
Prevent segmentation fault in notmuch_database_close

Previously opening a notmuch database in read write mode that has been
locked resulted in the notmuch_database_open function executing
notmuch_database_close as a cleanup function. notmuch_database_close
failed to check whether the xapian database has in fact been created.

Add a check whether the xapian database object has actually been
created before trying to call its flush method.

Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de>
lib/database.cc