diff options
author | Marvin Borner | 2021-05-21 22:41:11 +0200 |
---|---|---|
committer | Marvin Borner | 2021-05-21 22:41:11 +0200 |
commit | 93174e167a6aa313fca43f4cb0e9b975e1618468 (patch) | |
tree | 6fbed7871cb24f38cc714e6838ac6a6cc0f4fc36 /libs/libc/list.c | |
parent | 11cdf24db63af9a22786e81e69247f15cc196b0c (diff) |
Better window destroying
Diffstat (limited to 'libs/libc/list.c')
-rw-r--r-- | libs/libc/list.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/libc/list.c b/libs/libc/list.c index bda9e20..3f37478 100644 --- a/libs/libc/list.c +++ b/libs/libc/list.c @@ -110,7 +110,6 @@ struct node *list_add(struct list *list, void *data) } // Maybe list_remove_node? -// TODO: Free node on destroy struct list *list_remove(struct list *list, struct node *node) { if (!list->head) @@ -118,6 +117,7 @@ struct list *list_remove(struct list *list, struct node *node) if (list->head == node) { list->head = list->head->next; + free(node); return list; } @@ -131,5 +131,6 @@ struct list *list_remove(struct list *list, struct node *node) iterator->prev->next = iterator->next; if (iterator->next) iterator->next->prev = iterator->prev; + free(node); return list; } |