diff options
Diffstat (limited to 'newlib/libc/stdio/refill.c')
-rw-r--r-- | newlib/libc/stdio/refill.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/newlib/libc/stdio/refill.c b/newlib/libc/stdio/refill.c index 7bd3880..c1ef7e1 100644 --- a/newlib/libc/stdio/refill.c +++ b/newlib/libc/stdio/refill.c @@ -43,7 +43,8 @@ __srefill_r (struct _reent * ptr, CHECK_INIT (ptr, fp); - ORIENT (fp, -1); + if (ORIENT (fp, -1) != -1) + return EOF; fp->_r = 0; /* largely a convenience for callers */ |