X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=bindings%2Fruby%2Fthreads.c;h=abd51212664c0a10c5b58b34475e049419fba288;hb=687366b920caa5de6ea0b66b70cf2a11e5399f7b;hp=09906975f1e84091ead20878a06b96b60e55d0b1;hpb=c7893408bbe6904ae7da97aa203587af4ec2fac7;p=notmuch diff --git a/bindings/ruby/threads.c b/bindings/ruby/threads.c index 09906975..abd51212 100644 --- a/bindings/ruby/threads.c +++ b/bindings/ruby/threads.c @@ -33,11 +33,11 @@ notmuch_rb_threads_destroy(VALUE self) Data_Get_Struct(self, notmuch_threads_t, threads); notmuch_threads_destroy(threads); + DATA_PTR(self) = NULL; return Qnil; } - /* call-seq: THREADS.each {|item| block } => THREADS * * Calls +block+ once for each thread in +self+, passing that element as a @@ -49,9 +49,7 @@ notmuch_rb_threads_each(VALUE self) notmuch_thread_t *thread; notmuch_threads_t *threads; - Data_Get_Struct(self, notmuch_threads_t, threads); - if (!threads) - return self; + Data_Get_Notmuch_Threads(self, threads); for (; notmuch_threads_valid(threads); notmuch_threads_move_to_next(threads)) { thread = notmuch_threads_get(threads);