aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-08-28 17:53:11 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-08-28 17:53:11 +0200
commit1f947c5dfe27a9f7ef5734d4ab16a01317e50fe1 (patch)
tree7c5b292b03e6b61102d86fd62ced9aa2a72a3d8c /include
parentb1cea511d13775425ee38e70c43e8a81f96b888e (diff)
downloadminishell-1f947c5dfe27a9f7ef5734d4ab16a01317e50fe1.tar.gz
minishell-1f947c5dfe27a9f7ef5734d4ab16a01317e50fe1.tar.bz2
minishell-1f947c5dfe27a9f7ef5734d4ab16a01317e50fe1.zip
Fixing double free redir, export and preprocess on empty value
Diffstat (limited to 'include')
-rw-r--r--include/eval.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/eval.h b/include/eval.h
index 761c152..9b5d00a 100644
--- a/include/eval.h
+++ b/include/eval.h
@@ -6,7 +6,7 @@
/* By: charles <charles@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/01 17:05:30 by charles #+# #+# */
-/* Updated: 2020/08/27 20:31:35 by charles ### ########.fr */
+/* Updated: 2020/08/28 16:56:37 by charles ### ########.fr */
/* */
/* ************************************************************************** */
@@ -64,7 +64,7 @@ t_ftlst *split_token(t_ftlst **lst, enum e_tok);
** redir.c
*/
-bool redir_extract(t_tok_lst *redirs, t_env env, int fds[2]);
+bool redir_extract(t_tok_lst **redirs, t_env env, int fds[2]);
/*
** exec.c