From: Peter Wang Date: Wed, 16 Apr 2014 12:59:20 +0000 (+1000) Subject: ruby: handle return status of database close X-Git-Tag: 0.19_rc1~83 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=034102303eb4a2577ea06a453241fed6fe882322 ruby: handle return status of database close Throw an exception if notmuch_database_destroy fails. --- diff --git a/bindings/ruby/database.c b/bindings/ruby/database.c index e84f726d..c03d7011 100644 --- a/bindings/ruby/database.c +++ b/bindings/ruby/database.c @@ -113,11 +113,13 @@ notmuch_rb_database_open (int argc, VALUE *argv, VALUE klass) VALUE notmuch_rb_database_close (VALUE self) { + notmuch_status_t ret; notmuch_database_t *db; Data_Get_Notmuch_Database (self, db); - notmuch_database_destroy (db); + ret = notmuch_database_destroy (db); DATA_PTR (self) = NULL; + notmuch_rb_status_raise (ret); return Qnil; }