X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstdio%2Ffseek.c;h=439308f7574ba7efbd03ea9626c9041f3b7a322c;hb=49b6df3d9f3645de55607f1ac60095b22661b334;hp=b160b74edca0db9eeb8599a268a9ffc469d1aeb3;hpb=9a909fcd915c65628931dcf6e7b34f261e39e3a3;p=musl diff --git a/src/stdio/fseek.c b/src/stdio/fseek.c index b160b74e..439308f7 100644 --- a/src/stdio/fseek.c +++ b/src/stdio/fseek.c @@ -3,10 +3,10 @@ int __fseeko_unlocked(FILE *f, off_t off, int whence) { /* Adjust relative offset for unread data in buffer, if any. */ - if (whence == SEEK_CUR) off -= f->rend - f->rpos; + if (whence == SEEK_CUR && f->rend) off -= f->rend - f->rpos; /* Flush write buffer, and report error on failure. */ - if (f->wpos > f->wbase) { + if (f->wpos != f->wbase) { f->write(f, 0, 0); if (!f->wpos) return -1; } @@ -40,4 +40,4 @@ int fseek(FILE *f, long off, int whence) weak_alias(__fseeko, fseeko); -LFS64(fseeko); +weak_alias(fseeko, fseeko64);