From 65e8b6f93476e2e973f46221f0d80d6c72cdbd7e Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Mon, 17 Aug 2020 18:21:30 +0200 Subject: Conditionnal jump fix --- src/e_line.c | 11 ++++++----- src/s_init.c | 1 + 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/e_line.c b/src/e_line.c index e584140..6da7f77 100644 --- a/src/e_line.c +++ b/src/e_line.c @@ -28,7 +28,7 @@ static uint8_t uint8_t i; i = 0; - while (msh->bu_ref[i] && ft_strncmp(bin, msh->bu_ref[i], + while (msh->bu_ref[i] != NULL && ft_strncmp(bin, msh->bu_ref[i], ft_strlen(msh->bu_ref[i]) + 1) != 0) { i++; @@ -59,14 +59,15 @@ void if ((previf == 0) || (previf == 1 && msh->ret == 0) || (previf == 2 && msh->ret != 0)) { - if (ptr->pipes) + if (ptr->pipes != NULL) e_pipes(ptr, msh); - else if (ptr->com) + else if (ptr->com != NULL) { - if ((bu_id = get_builtin_id(ptr->com->bin, msh)) + if (ptr->com->bin != NULL && + (bu_id = get_builtin_id(ptr->com->bin, msh)) < FT_BUILTINS_COUNT) e_builtin(ptr->com, bu_id, msh); - else + else if (ptr->com->bin != NULL) e_extern(ptr->com, msh); } } diff --git a/src/s_init.c b/src/s_init.c index ab64603..63861e6 100644 --- a/src/s_init.c +++ b/src/s_init.c @@ -143,6 +143,7 @@ t_msh msh->curr = NULL; msh->vars = NULL; msh->cwd = set_cwd(msh); + msh->env_fork_tmp[0][0] = '\0'; inc_shlvl(msh); return (msh); } -- cgit v1.2.3