summaryrefslogtreecommitdiffstats
path: root/src/c_init.c
diff options
context:
space:
mode:
authorsalad <fmoenne-@student.le-101.fr>2020-12-18 16:30:40 +0100
committersalad <fmoenne-@student.le-101.fr>2020-12-18 16:30:40 +0100
commit47fb7c22f8c9d75058c2a7471bd2be3b76145ff2 (patch)
treeee84a363812109a364e12d81e6c88cadb28f808f /src/c_init.c
parentMerged branch 'gnu-compat' (diff)
download42-minishell-47fb7c22f8c9d75058c2a7471bd2be3b76145ff2.tar.gz
42-minishell-47fb7c22f8c9d75058c2a7471bd2be3b76145ff2.tar.bz2
42-minishell-47fb7c22f8c9d75058c2a7471bd2be3b76145ff2.tar.xz
42-minishell-47fb7c22f8c9d75058c2a7471bd2be3b76145ff2.tar.zst
42-minishell-47fb7c22f8c9d75058c2a7471bd2be3b76145ff2.zip
nolik
Diffstat (limited to 'src/c_init.c')
-rw-r--r--src/c_init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/c_init.c b/src/c_init.c
index cea3cce..c5c2dea 100644
--- a/src/c_init.c
+++ b/src/c_init.c
@@ -72,7 +72,7 @@ static short
return (c_ctrl_l(line, tcaps, msh));
else if ((*((unsigned int *)buf)) == CTRL_D &&
line[0] == '\0')
- return (c_ctrl_d(msh));
+ return (c_ctrl_d(line, msh));
return (0);
}
@@ -125,7 +125,7 @@ char
static char
*c_process_key(char **line, char *buf, t_caps *tcaps, t_msh *msh)
{
- if (ft_isprint(buf[0]))
+ if (ft_isprint(buf[0]) && *line != NULL)
c_add_char(line, buf, tcaps);
else if (((*((unsigned int *)buf)) == UP_K) ||
((*((unsigned int *)buf)) == CTRL_P) ||