Merge pull request #7810 from jepler/read-error-getenv
getenv: treat a read error like eof
This commit is contained in:
commit
6a4830b0cf
@ -72,7 +72,7 @@ STATIC void close_file(file_arg *active_file) {
|
||||
// nothing
|
||||
}
|
||||
STATIC bool is_eof(file_arg *active_file) {
|
||||
return f_eof(active_file);
|
||||
return f_eof(active_file) || f_error(active_file);
|
||||
}
|
||||
|
||||
// Return 0 if there is no next character (EOF).
|
||||
|
Loading…
Reference in New Issue
Block a user