diff options
Diffstat (limited to 'newlib/libc/stdio/fgetwc.c')
-rw-r--r-- | newlib/libc/stdio/fgetwc.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/newlib/libc/stdio/fgetwc.c b/newlib/libc/stdio/fgetwc.c index 522697e..38e2db8 100644 --- a/newlib/libc/stdio/fgetwc.c +++ b/newlib/libc/stdio/fgetwc.c @@ -177,8 +177,10 @@ _fgetwc_r (struct _reent *ptr, wint_t r; _newlib_flockfile_start (fp); - ORIENT(fp, 1); - r = __fgetwc (ptr, fp); + if (ORIENT(fp, 1) != 1) + r = WEOF; + else + r = __fgetwc (ptr, fp); _newlib_flockfile_end (fp); return r; } |