projects
/
oweals
/
musl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d1c24ac
)
apparently fseek should not set the error flag on failed seek
author
Rich Felker
<dalias@aerifal.cx>
Sat, 2 Apr 2011 17:54:55 +0000
(13:54 -0400)
committer
Rich Felker
<dalias@aerifal.cx>
Sat, 2 Apr 2011 17:54:55 +0000
(13:54 -0400)
src/stdio/fseek.c
patch
|
blob
|
history
diff --git
a/src/stdio/fseek.c
b/src/stdio/fseek.c
index 8d9da4408fbfe22ed5cef60c7c05354e53e40adb..b160b74edca0db9eeb8599a268a9ffc469d1aeb3 100644
(file)
--- 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;