aboutsummaryrefslogtreecommitdiff
path: root/libc/list.c
diff options
context:
space:
mode:
authorMarvin Borner2021-02-26 14:51:13 +0100
committerMarvin Borner2021-02-26 14:51:13 +0100
commit0f00932955521c3c2fb8140176ab72f22172c298 (patch)
tree99561c0254d14c0c3536f900ee83b0341a5c8a1b /libc/list.c
parentdec16faf32e75d613e20cac175b8a0c2d3612b94 (diff)
Started UBSan and stack-smashing check support
Diffstat (limited to 'libc/list.c')
-rw-r--r--libc/list.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/list.c b/libc/list.c
index f96fb27..cf51e33 100644
--- a/libc/list.c
+++ b/libc/list.c
@@ -130,6 +130,7 @@ struct list *list_remove(struct list *list, struct node *node)
}
iterator->prev->next = iterator->next;
- iterator->next->prev = iterator->prev;
+ if (iterator->next)
+ iterator->next->prev = iterator->prev;
return list;
}