diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-01-24 19:26:33 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-01-24 19:26:33 +0100 |
commit | a1ea0b4d5f6b27d9983a7702491b00dbe2bab610 (patch) | |
tree | 0f7d32a2c8b2fe0e816d6a0d01b4cab47005b824 /src/ft_get_res.c | |
parent | strdups (diff) | |
download | 42-cub3d-a1ea0b4d5f6b27d9983a7702491b00dbe2bab610.tar.gz 42-cub3d-a1ea0b4d5f6b27d9983a7702491b00dbe2bab610.tar.bz2 42-cub3d-a1ea0b4d5f6b27d9983a7702491b00dbe2bab610.tar.xz 42-cub3d-a1ea0b4d5f6b27d9983a7702491b00dbe2bab610.tar.zst 42-cub3d-a1ea0b4d5f6b27d9983a7702491b00dbe2bab610.zip |
Not ignoring get_next_line return value anymore
Diffstat (limited to 'src/ft_get_res.c')
-rw-r--r-- | src/ft_get_res.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/ft_get_res.c b/src/ft_get_res.c index 8cf1809..337d3d7 100644 --- a/src/ft_get_res.c +++ b/src/ft_get_res.c @@ -19,11 +19,10 @@ ft_get_res(int fd, t_win *wlist) char *line; char **words; - get_next_line(fd, &line); - if (!(words = ft_split(line, ' '))) + if (get_next_line(fd, &line) <= 0 || !(words = ft_split(line, ' '))) { ft_memdel(line); - return (ft_exit(5, wlist)); + return (ft_map_error(1, wlist)); } if (!(*words) || ft_strcmp(*words, "R") || !(*(words + 1)) || !(*(words + 2)) || (*(words + 3))) |