diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-08-10 20:37:22 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-08-10 20:37:22 +0200 |
commit | 9225b4f1ffd7b0e848592c3a718f59e4b70a6e02 (patch) | |
tree | 2f833ca75e0d1daa77e77ceb959d479f8a438c49 /src/e_externs_pipes.c | |
parent | Okok (diff) | |
download | 42-minishell-9225b4f1ffd7b0e848592c3a718f59e4b70a6e02.tar.gz 42-minishell-9225b4f1ffd7b0e848592c3a718f59e4b70a6e02.tar.bz2 42-minishell-9225b4f1ffd7b0e848592c3a718f59e4b70a6e02.tar.xz 42-minishell-9225b4f1ffd7b0e848592c3a718f59e4b70a6e02.tar.zst 42-minishell-9225b4f1ffd7b0e848592c3a718f59e4b70a6e02.zip |
Lots of stuff to do
Diffstat (limited to 'src/e_externs_pipes.c')
-rw-r--r-- | src/e_externs_pipes.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/e_externs_pipes.c b/src/e_externs_pipes.c index 02978db..13842a7 100644 --- a/src/e_externs_pipes.c +++ b/src/e_externs_pipes.c @@ -135,7 +135,6 @@ void t_msh *msh) { struct s_lpipes *head; - /* struct s_lpipes *head_del; */ struct s_lpipes *rptr; char **envpath; char **fullpath; @@ -145,7 +144,6 @@ void head = ptr; rptr = ptr; - /* head_del = ptr; */ pipes = e_get_pipes_count(head); if (!(fullpath = (char **)malloc((pipes + 2) * sizeof(char *)))) f_alloc_and_destroy_msh(msh); @@ -176,5 +174,4 @@ void i = 0; exec_path((const char**)fullpath, head, msh); ft_delwords(fullpath); - /* lpipes_clear(&head_del); */ } |