diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-25 20:42:41 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-25 20:42:41 +0200 |
commit | 638d89cbc030f5d187bf29ff2f3c135b3f3bfeca (patch) | |
tree | d7de1ae88e2cd68560a19dae00856841629b77c7 /src/ft_m_loop.c | |
parent | k (diff) | |
download | 42-minishell-638d89cbc030f5d187bf29ff2f3c135b3f3bfeca.tar.gz 42-minishell-638d89cbc030f5d187bf29ff2f3c135b3f3bfeca.tar.bz2 42-minishell-638d89cbc030f5d187bf29ff2f3c135b3f3bfeca.tar.xz 42-minishell-638d89cbc030f5d187bf29ff2f3c135b3f3bfeca.tar.zst 42-minishell-638d89cbc030f5d187bf29ff2f3c135b3f3bfeca.zip |
Fixed segv on spaces only
Diffstat (limited to '')
-rw-r--r-- | src/ft_m_loop.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/ft_m_loop.c b/src/ft_m_loop.c index 14f40a9..7f805a2 100644 --- a/src/ft_m_loop.c +++ b/src/ft_m_loop.c @@ -36,7 +36,6 @@ uint8_t ft_memdel((void*)&line); ft_e_lcom(msh); ft_lcom_clear(&msh->curr); - /* TODO: segv on spaces only "msh ~> " */ /* TODO: segv on ';' terminated lines "msh ~> echo qwe;" */ /* TODO: (null): Bad address on "msh ~> echo a > asd; cat < asd" but not on "msh ~> echo a > asd; cat asd" */ /* TODO: GNL 25 leak on "msh ~> exit" */ |