diff options
Diffstat (limited to 'src/ft_check_empty_line.c')
-rw-r--r-- | src/ft_check_empty_line.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/ft_check_empty_line.c b/src/ft_check_empty_line.c index 7f58205..5515c90 100644 --- a/src/ft_check_empty_line.c +++ b/src/ft_check_empty_line.c @@ -6,7 +6,11 @@ ft_check_empty_line(int fd, unsigned int linum, t_win *wlist) { char *line; - get_next_line(fd, &line); + if (get_next_line(fd, &line) <= 0) + { + ft_memdel(line); + ft_map_error(linum, wlist); + } if (*line) { ft_memdel(line); |