aboutsummaryrefslogtreecommitdiff
path: root/include/minishell.h
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-09-16 20:25:08 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-09-16 20:25:08 +0200
commit46c7f91cdceef0d5dd801ac569fb5d0c76b711aa (patch)
tree3280c238a009d38896d3caa6c92601817d54ef87 /include/minishell.h
parent3bb997212b3a0d140a34932f9deff52793673d49 (diff)
downloadminishell-46c7f91cdceef0d5dd801ac569fb5d0c76b711aa.tar.gz
minishell-46c7f91cdceef0d5dd801ac569fb5d0c76b711aa.tar.bz2
minishell-46c7f91cdceef0d5dd801ac569fb5d0c76b711aa.zip
Fixing memory leaks in preprocess and parser
Diffstat (limited to 'include/minishell.h')
-rw-r--r--include/minishell.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/minishell.h b/include/minishell.h
index 2f64269..7d3f45c 100644
--- a/include/minishell.h
+++ b/include/minishell.h
@@ -6,7 +6,7 @@
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/26 15:33:51 by cacharle #+# #+# */
-/* Updated: 2020/09/16 16:26:25 by charles ### ########.fr */
+/* Updated: 2020/09/16 17:20:42 by charles ### ########.fr */
/* */
/* ************************************************************************** */
@@ -54,7 +54,6 @@ typedef struct
{
int last_status;
char *progname;
-
} t_state;
extern t_state g_state;