diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-04-02 13:54:55 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-04-02 13:54:55 -0400 |
commit | 9a909fcd915c65628931dcf6e7b34f261e39e3a3 (patch) | |
tree | a63d449fada18d40848aa06dfd29ce3a2279a5fb /src | |
parent | d1c24ac4ec721ea49c15b277eaebed30f8df1e4c (diff) | |
download | musl-9a909fcd915c65628931dcf6e7b34f261e39e3a3.tar.gz musl-9a909fcd915c65628931dcf6e7b34f261e39e3a3.tar.xz musl-9a909fcd915c65628931dcf6e7b34f261e39e3a3.zip |
apparently fseek should not set the error flag on failed seek
Diffstat (limited to 'src')
-rw-r--r-- | src/stdio/fseek.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/stdio/fseek.c b/src/stdio/fseek.c index 8d9da440..b160b74e 100644 --- a/src/stdio/fseek.c +++ b/src/stdio/fseek.c @@ -15,10 +15,7 @@ int __fseeko_unlocked(FILE *f, off_t off, int whence) f->wpos = f->wbase = f->wend = 0; /* Perform the underlying seek. */ - if (f->seek(f, off, whence) < 0) { - f->flags |= F_ERR; - return -1; - } + if (f->seek(f, off, whence) < 0) return -1; /* If seek succeeded, file is seekable and we discard read buffer. */ f->rpos = f->rend = 0; |