X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstdio%2Ffseek.c;h=b160b74edca0db9eeb8599a268a9ffc469d1aeb3;hb=1d92cddb1e1ed4b6cc0e55461727561e7a2522e0;hp=8d9da4408fbfe22ed5cef60c7c05354e53e40adb;hpb=e3cd6c5c265cd481db6e0c5b529855d99f0bda30;p=musl 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;