From a60235c04728b5308aa03ab4f59afa1a8b132bbf Mon Sep 17 00:00:00 2001 From: Thomas Roessler Date: Sun, 24 Jul 2005 16:53:59 +0000 Subject: [PATCH] Try to fix threading bug triggered by duplicate references. --- thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.40.0