From d68e16359569ccbdb8769f0913f0d920b418b592 Mon Sep 17 00:00:00 2001 From: tomoron Date: Tue, 2 Apr 2024 13:45:06 +0200 Subject: [PATCH] infinite loop --- srcs/parsing_bonus.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/srcs/parsing_bonus.c b/srcs/parsing_bonus.c index 5827f73..9eb64cc 100644 --- a/srcs/parsing_bonus.c +++ b/srcs/parsing_bonus.c @@ -6,7 +6,7 @@ /* By: tomoron +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/03/27 14:40:44 by tomoron #+# #+# */ -/* Updated: 2024/04/02 02:08:14 by tomoron ### ########.fr */ +/* Updated: 2024/04/02 13:41:32 by tomoron ### ########.fr */ /* */ /* ************************************************************************** */ @@ -164,6 +164,7 @@ t_cmd *check_cmds_syntax(t_cmd *cmds) return (cmds); free_token(token); } + cmds = cmds->next; } return (0); }