@@ -22,6 +22,8 @@ void ft_tabdel(char **tabe)
int i;
i = -1;
+ if (tabe == NULL)
+ return ;
while (tabe[++i] != NULL)
ft_strdel(&tabe[i]);
free(tabe);