diff options
Diffstat (limited to 'src/ft_get_sprite_tex.c')
-rw-r--r-- | src/ft_get_sprite_tex.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/ft_get_sprite_tex.c b/src/ft_get_sprite_tex.c index b246b5e..308ff84 100644 --- a/src/ft_get_sprite_tex.c +++ b/src/ft_get_sprite_tex.c @@ -8,11 +8,10 @@ ft_get_sprite_tex(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(7, wlist)); } if (!(*words) || ft_strcmp(*words, "S") || !words[1] || words[2]) { |