fix exit when variable on input redirection and invalid read

This commit is contained in:
tom moron
2024-05-05 20:26:52 +02:00
parent b45a04e622
commit 43e4d054b5
2 changed files with 8 additions and 2 deletions

View File

@ -6,7 +6,7 @@
/* By: marde-vr <marde-vr@42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/03/05 18:15:27 by marde-vr #+# #+# */
/* Updated: 2024/05/03 14:11:52 by marde-vr ### ########.fr */
/* Updated: 2024/05/05 20:10:03 by tomoron ### ########.fr */
/* */
/* ************************************************************************** */
@ -40,7 +40,10 @@ int open_input_redirection_file(t_msh *msh, t_cmd **cur_token)
if (msh->in_fd != 0)
close(msh->in_fd);
if (ft_strchr((*cur_token)->value, '$'))
{
ambiguous_redirect((*cur_token)->value, msh);
return (1);
}
filename = parse_tokens((*cur_token)->value, msh->env);
if (!filename)
ft_exit(msh, 1);

View File

@ -6,7 +6,7 @@
/* By: marde-vr <marde-vr@42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/02/09 15:24:36 by tomoron #+# #+# */
/* Updated: 2024/05/04 14:11:54 by tomoron ### ########.fr */
/* Updated: 2024/05/05 20:21:43 by tomoron ### ########.fr */
/* */
/* ************************************************************************** */
@ -29,7 +29,10 @@ int get_var_len(char **command, t_env *env)
(*command)++;
if (**command == '\'' || **command == '"')
{
(*command)--;
return(0);
}
if (!**command)
return (1);
if (!ft_isalnum(**command) && **command != '_' && **command != '?')