X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstdio%2Fftell.c;h=1e1a08d8281dc6f7a79b4010adf5302f08716bc3;hb=1d5750b95c06913a1f18a995481276d698d20fae;hp=82371e37b38316d8fdbdb5bf9bf69f8771f003e0;hpb=c6d441e3a246370d9c459396ec22b096db93850e;p=musl diff --git a/src/stdio/ftell.c b/src/stdio/ftell.c index 82371e37..1e1a08d8 100644 --- a/src/stdio/ftell.c +++ b/src/stdio/ftell.c @@ -4,11 +4,17 @@ off_t __ftello_unlocked(FILE *f) { - off_t pos = f->seek(f, 0, SEEK_CUR); + off_t pos = f->seek(f, 0, + (f->flags & F_APP) && f->wpos != f->wbase + ? SEEK_END : SEEK_CUR); if (pos < 0) return pos; /* Adjust for data in buffer. */ - return pos - (f->rend - f->rpos) + (f->wpos - f->wbase); + if (f->rend) + pos += f->rpos - f->rend; + else if (f->wbase) + pos += f->wpos - f->wbase; + return pos; } off_t __ftello(FILE *f) @@ -31,5 +37,3 @@ long ftell(FILE *f) } weak_alias(__ftello, ftello); - -LFS64(ftello);