提交 9a909fcd 编写于 作者: R Rich Felker

apparently fseek should not set the error flag on failed seek

上级 d1c24ac4
......@@ -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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册