mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-08 12:18:42 +00:00
Lists: fix a stupid sanitizer bug
This commit is contained in:
parent
3bb10b4d31
commit
e26a5195dd
@ -167,8 +167,12 @@ LIST_INLINE void
|
||||
replace_node(node *old, node *new)
|
||||
{
|
||||
EXPENSIVE_CHECK(check_list(NULL, old));
|
||||
|
||||
if (old != new)
|
||||
{
|
||||
ASSUME(new->prev == NULL);
|
||||
ASSUME(new->next == NULL);
|
||||
}
|
||||
|
||||
old->next->prev = new;
|
||||
old->prev->next = new;
|
||||
|
Loading…
Reference in New Issue
Block a user