aboutsummaryrefslogtreecommitdiff
path: root/lib/thread.cc
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2015-09-27 12:32:02 -0300
committerDavid Bremner <david@tethera.net>2015-10-05 19:53:53 -0300
commit378ba492a634db5b841f2454991239a897f830b2 (patch)
treef37c96d0d5ef8e34a4674735d99d0f74ab435194 /lib/thread.cc
parent2501c2565ccca19e3e49fa1594aaa90f04e37d6d (diff)
lib: migrate thread.cc to new query_search API
here we rely on thread_id_query being attached to the local talloc context, so no new cleanup code is needed.
Diffstat (limited to 'lib/thread.cc')
-rw-r--r--lib/thread.cc9
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/thread.cc b/lib/thread.cc
index c8e58c33..0c937d76 100644
--- a/lib/thread.cc
+++ b/lib/thread.cc
@@ -447,6 +447,7 @@ _notmuch_thread_create (void *ctx,
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)
@@ -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);
- /* 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))
{