From: Thomas Roessler Date: Sun, 24 Jul 2005 16:53:59 +0000 (+0000) Subject: Try to fix threading bug triggered by duplicate references. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a60235c04728b5308aa03ab4f59afa1a8b132bbf;p=neomutt Try to fix threading bug triggered by duplicate references. --- diff --git a/thread.c b/thread.c index 4c8fe1017..37ec515a8 100644 --- a/thread.c +++ b/thread.c @@ -928,7 +928,7 @@ void mutt_sort_threads (CONTEXT *ctx, int init) if (new->duplicate_thread) new = new->parent; if (is_descendant (new, thread)) /* no loops! */ - break; + continue; } if (thread->parent)