From dea9844db4bf893525d692209d004968e4bf89ad Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Wed, 4 Mar 2020 16:03:30 +0100 Subject: Tab --- src/ft_init_map.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/ft_init_map.c') diff --git a/src/ft_init_map.c b/src/ft_init_map.c index e2cfa21..4fa127c 100644 --- a/src/ft_init_map.c +++ b/src/ft_init_map.c @@ -18,7 +18,8 @@ static int8_t ft_init_map_callocs(t_map *mlist) { - if (!(mlist->no_tex_path = (char*)ft_calloc(1, sizeof(char))) || + if (!(mlist->filename = (char*)ft_calloc(1, sizeof(char))) || + !(mlist->no_tex_path = (char*)ft_calloc(1, sizeof(char))) || !(mlist->so_tex_path = (char*)ft_calloc(1, sizeof(char))) || !(mlist->ea_tex_path = (char*)ft_calloc(1, sizeof(char))) || !(mlist->we_tex_path = (char*)ft_calloc(1, sizeof(char))) || -- cgit v1.2.3