Commit 00049d68 00049d688b8af8d69cac8c1f996ad317954aeaff by Alain Magloire

Simple fix, I mixed up the list next pointer.

1 parent a40eb4ad
......@@ -129,6 +129,7 @@ list_remove (list_t list, void *item)
if ((int)current->item == (int)item)
{
previous->next = current->next;
current->next->prev = previous;
free (current);
list->count--;
RWLOCK_UNLOCK (&(list->rwlock));
......