update: changed the way heredocs are parsed

This commit is contained in:
maix0 2024-09-15 20:29:27 +00:00
parent 8272d72997
commit 43b969183d
365 changed files with 20907 additions and 51362 deletions

View file

@ -6,7 +6,7 @@
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/07/30 14:29:42 by rparodi #+# #+# */
/* Updated: 2024/08/01 09:35:07 by maiboyer ### ########.fr */
/* Updated: 2024/09/15 20:14:43 by maiboyer ### ########.fr */
/* */
/* ************************************************************************** */
@ -89,7 +89,6 @@ void ast_free_redirection(t_ast_node elem)
if (elem->kind == AST_HEREDOC_REDIRECTION)
{
mem_free(elem->data.heredoc_redirection.delimiter);
mem_free(elem->data.heredoc_redirection.content);
}
}