bebou t tro for

This commit is contained in:
Raphaël 2024-05-09 17:16:07 +02:00
parent b5c7344851
commit 1252ac48a8
15 changed files with 214 additions and 25 deletions

View file

@ -6,7 +6,7 @@
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/28 18:36:40 by maiboyer #+# #+# */
/* Updated: 2024/04/30 16:43:35 by maiboyer ### ########.fr */
/* Updated: 2024/05/09 17:07:22 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
@ -88,6 +88,6 @@ void free_node(t_node t)
while (idx < t.childs_count)
free_node(t.childs[idx++]);
free(t.childs);
if (t.single_str != NULL)
free(t.single_str);
// if (t.single_str != NULL)
// free(t.single_str);
}