aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_exit.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ft_exit.c')
-rw-r--r--src/ft_exit.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/ft_exit.c b/src/ft_exit.c
index 5e7cd3f..8ada2e4 100644
--- a/src/ft_exit.c
+++ b/src/ft_exit.c
@@ -21,13 +21,14 @@
static void
ft_free_lists(t_cub *clist)
{
- ft_memdel((void**)&clist->no_tex_path);
- ft_memdel((void**)&clist->so_tex_path);
- ft_memdel((void**)&clist->ea_tex_path);
- ft_memdel((void**)&clist->we_tex_path);
- ft_memdel((void**)&clist->sprite_path);
- ft_memdel((void**)&clist->mapl);
- ft_free_words(clist->map);
+ ft_memdel((void**)&clist->mlist->no_tex_path);
+ ft_memdel((void**)&clist->mlist->so_tex_path);
+ ft_memdel((void**)&clist->mlist->ea_tex_path);
+ ft_memdel((void**)&clist->mlist->we_tex_path);
+ ft_memdel((void**)&clist->mlist->sprite_path);
+ ft_memdel((void**)&clist->mlist->mapl);
+ ft_free_words(clist->mlist->map);
+ ft_memdel((void**)&clist->mlist);
ft_memdel((void**)&clist->plist);
if (!clist->wlist->inited)
ft_memdel((void**)&clist->wlist->winptr);