]> git.notmuchmail.org Git - notmuch/commitdiff
lib: migrate thread.cc to new query_search API
authorDavid Bremner <david@tethera.net>
Sun, 27 Sep 2015 15:32:02 +0000 (12:32 -0300)
committerDavid Bremner <david@tethera.net>
Mon, 5 Oct 2015 22:53:53 +0000 (19:53 -0300)
here we rely on thread_id_query being attached to the local talloc
context, so no new cleanup code is needed.

lib/thread.cc

index c8e58c336e46e6dcfc45a15bf78b7182643cb421..0c937d7697a1007cdb27bd5c18eb7d93dfc38ba8 100644 (file)
@@ -447,6 +447,7 @@ _notmuch_thread_create (void *ctx,
 
     notmuch_messages_t *messages;
     notmuch_message_t *message;
 
     notmuch_messages_t *messages;
     notmuch_message_t *message;
+    notmuch_status_t status;
 
     seed_message = _notmuch_message_create (local, notmuch, seed_doc_id, NULL);
     if (! seed_message)
 
     seed_message = _notmuch_message_create (local, notmuch, seed_doc_id, NULL);
     if (! seed_message)
@@ -504,9 +505,11 @@ _notmuch_thread_create (void *ctx,
      * oldest or newest subject is desired. */
     notmuch_query_set_sort (thread_id_query, NOTMUCH_SORT_OLDEST_FIRST);
 
      * oldest or newest subject is desired. */
     notmuch_query_set_sort (thread_id_query, NOTMUCH_SORT_OLDEST_FIRST);
 
-    /* XXX: this should use the _st version, but it needs an error path
-     */
-    for (messages = notmuch_query_search_messages (thread_id_query);
+    status = notmuch_query_search_messages_st (thread_id_query, &messages);
+    if (status)
+       goto DONE;
+
+    for (;
         notmuch_messages_valid (messages);
         notmuch_messages_move_to_next (messages))
     {
         notmuch_messages_valid (messages);
         notmuch_messages_move_to_next (messages))
     {