From 458c7fa7417f791371aa14b8bebf7ea448c747f1 Mon Sep 17 00:00:00 2001 From: Jan Vidar Krey Date: Tue, 1 May 2012 20:39:49 +0200 Subject: [PATCH] Remove list assertion when removing element that is not in the list. Breaks autotest. --- src/util/list.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/util/list.c b/src/util/list.c index 7a14ff5..9e9dd23 100644 --- a/src/util/list.c +++ b/src/util/list.c @@ -111,7 +111,6 @@ void list_remove(struct linked_list* list, void* data_ptr) } node = node->next; } - uhub_assert(0); }