From 6916fda3837003e28757fcaa1279875a2ae9a46b Mon Sep 17 00:00:00 2001 From: Alexander Rosenberg Date: Sat, 10 Jan 2026 00:50:19 -0800 Subject: [PATCH] Fix src/list.c --- src/list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/list.c b/src/list.c index be9a6dc..21f4a05 100644 --- a/src/list.c +++ b/src/list.c @@ -259,7 +259,7 @@ RefcountList *refcount_list_join(RefcountList *list1, RefcountList *list2) { } if (list2) { if (list2->prev) { - list2->prev = NULL; + list2->prev->next = NULL; } list2->prev = end1; }