mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-23 12:36:51 +03:00
Fix broken linked list removal.
svn path=/trunk/netsurf/; revision=10200
This commit is contained in:
parent
311b458d56
commit
b6f6bc5fdd
@ -986,7 +986,7 @@ nserror llcache_object_remove_from_list(llcache_object *object,
|
||||
object->prev->next = object->next;
|
||||
|
||||
if (object->next != NULL)
|
||||
object->next->prev = object->next;
|
||||
object->next->prev = object->prev;
|
||||
|
||||
return NSERROR_OK;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user