From: Carl Worth Date: Fri, 13 Nov 2009 04:09:12 +0000 (-0800) Subject: notmuch search: Fix to actually return something. X-Git-Tag: 0.1~516 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=523f1ce0a5e1cbe62dc9b879f224d6b60631322f notmuch search: Fix to actually return something. This serves me right for committing untested code. The notmuch_query_search_threads was totally broken, (it didn't properly treat -1 as being unlimited and instead returned no threads in that case). --- diff --git a/lib/query.cc b/lib/query.cc index 1777e47d..2169709c 100644 --- a/lib/query.cc +++ b/lib/query.cc @@ -200,7 +200,7 @@ notmuch_query_search_threads (notmuch_query_t *query, seen = g_hash_table_new_full (g_str_hash, g_str_equal, free, NULL); - while (threads_seen < first + max_threads) + while (max_threads < 0 || threads_seen < first + max_threads) { int messages_seen_previously = messages_seen;