update: command list is now freed completely if any error ocurrs

This commit is contained in:
2026-02-12 03:09:45 +01:00
parent 843bdc0061
commit 8882929423
2 changed files with 17 additions and 13 deletions

View File

@@ -6,7 +6,7 @@
/* By: sede-san <sede-san@student.42madrid.com +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/10/22 19:03:51 by sede-san #+# #+# */
/* Updated: 2026/02/11 00:35:08 by sede-san ### ########.fr */
/* Updated: 2026/02/12 03:06:43 by sede-san ### ########.fr */
/* */
/* ************************************************************************** */
@@ -32,9 +32,9 @@ extern t_list *lex(const char *line);
extern void token_clear(t_token *token);
extern t_command *command_new(t_list **tokens);
extern void command_clear(t_command *command);
extern void command_add_tokens(t_command *command, t_list **tokens);
extern void command_add_tokens(t_command **command, t_list **tokens);
extern bool is_pipe(t_token *token);
extern bool is_redirection(t_token *token);
void redirection_add(t_list **tokens, t_token *token, t_command *command);
void words_add(t_list **tokens, t_command *command);
void redirection_add(t_list **tokens, t_token *token, t_command **command);
void words_add(t_list **tokens, t_command **command);
#endif /* PARSER_H */