From 524db69ff113af70a527823e1699e8eae3400c0b Mon Sep 17 00:00:00 2001 From: ticktock35 Date: Mon, 15 Dec 2008 05:32:57 +0000 Subject: [PATCH 1/1] opkg: reinitial node of active_list after clear git-svn-id: http://opkg.googlecode.com/svn/trunk@171 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358 --- libopkg/active_list.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libopkg/active_list.c b/libopkg/active_list.c index 8544440..2694689 100644 --- a/libopkg/active_list.c +++ b/libopkg/active_list.c @@ -81,8 +81,7 @@ static void list_head_clear (struct list_head *head) { if (next->depend.next != &next->depend) { list_head_clear(&next->depend); } - list_del_init(&next->node); - next->depended = NULL; + active_list_init(next); } } void active_list_clear(struct active_list *head) { -- 2.25.1