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).
This commit is contained in:
Carl Worth 2009-11-12 20:09:12 -08:00
parent 93dcc3b695
commit 523f1ce0a5

View file

@ -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;