[PATCH 2/2] ruby: cleanup object_destroy()

Subject: [PATCH 2/2] ruby: cleanup object_destroy()

Date: Tue, 6 Jul 2021 22:45:33 -0500

To: notmuch@notmuchmail.org

Cc: David Bremner, Felipe Contreras

From: Felipe Contreras


It was assumed the destructor of notmuch_rb_database_type did return a
notmuch_status_t because that's what notmuch_database_close returns, and
that value was checked by notmuch_rb_database_close in order to decide
if to raise an exception.

It turns out notmuch_database_destroy was called instead, so nothing was
returned (void).

All the destroy functions are void, and that's what we want.

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
---
 bindings/ruby/defs.h | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/bindings/ruby/defs.h b/bindings/ruby/defs.h
index daac13ab..b3f0621c 100644
--- a/bindings/ruby/defs.h
+++ b/bindings/ruby/defs.h
@@ -105,19 +105,16 @@ extern const rb_data_type_t notmuch_rb_tags_type;
 #define Data_Get_Notmuch_Tags(obj, ptr) \
     Data_Get_Notmuch_Object ((obj), &notmuch_rb_tags_type, (ptr))
 
-static inline notmuch_status_t
+static inline void
 notmuch_rb_object_destroy (VALUE rb_object, const rb_data_type_t *type)
 {
     void *nm_object;
-    notmuch_status_t ret;
 
     Data_Get_Notmuch_Object (rb_object, type, nm_object);
 
     /* Call the corresponding notmuch_*_destroy function */
-    ret = ((notmuch_status_t (*)(void *)) type->data) (nm_object);
+    ((void (*)(void *)) type->data) (nm_object);
     DATA_PTR (rb_object) = NULL;
-
-    return ret;
 }
 
 /* status.c */
-- 
2.32.0.36.g70aac2b1aa
_______________________________________________
notmuch mailing list -- notmuch@notmuchmail.org
To unsubscribe send an email to notmuch-leave@notmuchmail.org

Thread: