mirror of
https://github.com/swaywm/sway
synced 2024-11-23 05:02:01 +01:00
Fix infinite loop in peek_line for EOF blanks
This commit is contained in:
parent
af87c7a1af
commit
85a5c8dabd
@ -56,6 +56,8 @@ char *peek_line(FILE *file, int line_offset, long *position) {
|
||||
for (int i = 0; i <= line_offset; i++) {
|
||||
ssize_t read = getline(&line, &length, file);
|
||||
if (read < 0) {
|
||||
free(line);
|
||||
line = NULL;
|
||||
break;
|
||||
}
|
||||
if (read > 0 && line[read - 1] == '\n') {
|
||||
|
Loading…
Reference in New Issue
Block a user