aboutsummaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorMarvin Borner2021-02-26 22:13:15 +0100
committerMarvin Borner2021-02-26 22:13:15 +0100
commitec39e75a42b29ee2a2635b8b2782781425b17dad (patch)
tree87975bb2fae52b55813f33dba8947d7502b3cf8c /libc
parent50123cd5368602f68b9650890735947eb7ec501e (diff)
Made ext2 reading around 300% faster (10MB reads)
This is the result of indirect block caching. Melvix can now read at a speed of around 8MB/s - WROOOM!
Diffstat (limited to 'libc')
-rw-r--r--libc/list.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/list.c b/libc/list.c
index cf51e33..c86b23d 100644
--- a/libc/list.c
+++ b/libc/list.c
@@ -15,6 +15,8 @@ struct list *list_new(void)
void list_destroy(struct list *list)
{
+ if (!list)
+ return;
struct node *iterator = list->head;
while (iterator != NULL) {
if (iterator->next == NULL) {