From ec39e75a42b29ee2a2635b8b2782781425b17dad Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 26 Feb 2021 22:13:15 +0100 Subject: 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! --- libc/list.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libc') 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) { -- cgit v1.2.3