X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=lib%2Fquery.cc;h=f53215dbaf5902fca51d3c7dd5ac3628802ded00;hb=d4321162ae1bd5cbbf620a8bc26cec5430acf90b;hp=5275b5a24fe620ed2dcef5fd2d87a9b78a1860a6;hpb=6b440a0adf327fa9c3f5e3dcc84f9356c62a4580;p=notmuch diff --git a/lib/query.cc b/lib/query.cc index 5275b5a2..f53215db 100644 --- a/lib/query.cc +++ b/lib/query.cc @@ -618,10 +618,14 @@ notmuch_query_count_threads (notmuch_query_t *query) GHashTable *hash; unsigned int count; notmuch_sort_t sort; + notmuch_status_t status; sort = query->sort; query->sort = NOTMUCH_SORT_UNSORTED; - messages = notmuch_query_search_messages (query); + status = notmuch_query_search_messages_st (query, &messages); + if (status) + return 0; + query->sort = sort; if (messages == NULL) return 0;