diff options
Diffstat (limited to 'src/s_com.c')
-rw-r--r-- | src/s_com.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/s_com.c b/src/s_com.c index 576b407..2abbe9e 100644 --- a/src/s_com.c +++ b/src/s_com.c @@ -113,9 +113,9 @@ t_com com->env_fork = NULL; if (get_redir(word, &com) != 0) return (NULL); - if (!(words = p_subst_args(word, com->redir))) + if ((words = p_subst_args(word, com->redir)) == NULL) return (NULL); - if (!(words = p_subst_vars(words, msh))) + if ((words = p_subst_vars(words, msh)) == NULL) return (NULL); words = p_check_args_equals(words, msh); if (msh->env_fork_tmp[0][0] != '\0') |