c la merde

This commit is contained in:
Camille Chauvet 2023-02-28 15:21:47 +01:00
parent 9cbb1e139a
commit e7f8373b4a
3 changed files with 8 additions and 4 deletions

4
cmd.c
View File

@ -23,8 +23,8 @@ void ft_cmddel(void *ptr)
if (content->executable != NULL) if (content->executable != NULL)
free(content->executable); free(content->executable);
if (content->fd_in > 2) if (content->fd_in > 2)
close(content->fd_out); close(content->fd_in);
if (content->fd_in > 2) if (content->fd_out > 2)
close(content->fd_out); close(content->fd_out);
free(content); free(content);
} }

View File

@ -118,13 +118,16 @@ static int ft_own_cmd(t_data *data, t_cmd *cmd)
else if (ft_strcmp(cmd->executable, "exit") == 0) else if (ft_strcmp(cmd->executable, "exit") == 0)
{ {
exit_code = ft_exit(cmd->args + 1); exit_code = ft_exit(cmd->args + 1);
if (exit_code != -1) if (exit_code > -1)
{ {
data->exit_code = exit_code; data->exit_code = exit_code;
return_code = -2; return_code = -2;
} }
else else
{
data->exit_code = 1;
return_code = -3; return_code = -3;
}
} }
if (return_code >= 0) if (return_code >= 0)
data->exit_code = return_code; data->exit_code = return_code;

View File

@ -38,7 +38,8 @@ static char *ft_spacer_after(const char *str)
if (out == NULL) if (out == NULL)
return (NULL); return (NULL);
} }
i++; if (out[i] != '\0')
i++;
} }
return (out); return (out);
} }