summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdio/fseek.c
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>2001-09-01 14:40:01 +0000
committerache <ache@FreeBSD.org>2001-09-01 14:40:01 +0000
commit0c69b0498400f6664df5375fcebf996ba7719f42 (patch)
tree676a57eb64f3349c798379fdbbb069ed5cebc034 /lib/libc/stdio/fseek.c
parentd8648337d6d5c5d7a8d79e3a94d02b694bfa67a2 (diff)
downloadFreeBSD-src-0c69b0498400f6664df5375fcebf996ba7719f42.zip
FreeBSD-src-0c69b0498400f6664df5375fcebf996ba7719f42.tar.gz
Make fseek(... SEEK_CUR) fails if current file-position is unspecified.
Diffstat (limited to 'lib/libc/stdio/fseek.c')
-rw-r--r--lib/libc/stdio/fseek.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/libc/stdio/fseek.c b/lib/libc/stdio/fseek.c
index d06e408..b2d98a9 100644
--- a/lib/libc/stdio/fseek.c
+++ b/lib/libc/stdio/fseek.c
@@ -131,8 +131,12 @@ _fseeko(fp, offset, whence, ltest)
*/
if (_ftello(fp, &curoff))
return (-1);
- if ((offset > 0 && curoff > OFF_MAX - offset) ||
- (offset < 0 && curoff < OFF_MIN - offset)) {
+ if (curoff < 0) {
+ /* Unspecified position because of ungetc() at 0 */
+ errno = ESPIPE;
+ return (-1);
+ }
+ if (offset > 0 && curoff > OFF_MAX - offset) {
errno = EOVERFLOW;
return (-1);
}
OpenPOWER on IntegriCloud