diff options
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/stdio/fseek.c | 1 | ||||
-rw-r--r-- | lib/libc/stdio/stdio.c | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lib/libc/stdio/fseek.c b/lib/libc/stdio/fseek.c index a3c80c1..d06e408 100644 --- a/lib/libc/stdio/fseek.c +++ b/lib/libc/stdio/fseek.c @@ -297,6 +297,7 @@ dumb: (*seekfn)(fp->_cookie, (fpos_t)offset, whence) == POS_ERR) return (-1); if (ltest && fp->_offset > LONG_MAX) { + fp->_flags |= __SERR; errno = EOVERFLOW; return (-1); } diff --git a/lib/libc/stdio/stdio.c b/lib/libc/stdio/stdio.c index 46dd2df..ea8a4c1 100644 --- a/lib/libc/stdio/stdio.c +++ b/lib/libc/stdio/stdio.c @@ -118,8 +118,10 @@ __sseek(cookie, offset, whence) * (fseek) in the cases it can't detect. */ if (ret < 0) { - if (errret == 0) + if (errret == 0) { + fp->_flags |= __SERR; errno = EINVAL; + } fp->_flags &= ~__SOFF; ret = -1; } else { |