diff options
author | Rich Felker <dalias@aerifal.cx> | 2018-02-24 10:51:16 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018-02-24 10:51:16 -0500 |
commit | f92804188eb464536d638548e51e835b6c49e373 (patch) | |
tree | b5f290463be7b7adbe63d1b2ed9544102591a1a7 /src/stdio | |
parent | 9bf9c732f9d39d691e1f8841e7204c9c26321946 (diff) | |
download | musl-f92804188eb464536d638548e51e835b6c49e373.tar.gz musl-f92804188eb464536d638548e51e835b6c49e373.tar.bz2 musl-f92804188eb464536d638548e51e835b6c49e373.tar.xz musl-f92804188eb464536d638548e51e835b6c49e373.zip |
consistently return number of bytes read from stdio read backend
the stdio FILE read backend's return type is size_t, not ssize_t, and
all of the special (non-fd-backed) FILE types already return the
number of bytes read (zero) on error or eof. only __stdio_read leaked
a syscall error return into its return value.
fread had a workaround for this behavior going all the way back to the
original check-in. remove the workaround since it's no longer needed.
Diffstat (limited to 'src/stdio')
-rw-r--r-- | src/stdio/__stdio_read.c | 2 | ||||
-rw-r--r-- | src/stdio/fread.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/stdio/__stdio_read.c b/src/stdio/__stdio_read.c index af50508c..909c36a9 100644 --- a/src/stdio/__stdio_read.c +++ b/src/stdio/__stdio_read.c @@ -12,7 +12,7 @@ size_t __stdio_read(FILE *f, unsigned char *buf, size_t len) cnt = syscall(SYS_readv, f->fd, iov, 2); if (cnt <= 0) { f->flags |= cnt ? F_ERR : F_EOF; - return cnt; + return 0; } if (cnt <= iov[0].iov_len) return cnt; cnt -= iov[0].iov_len; diff --git a/src/stdio/fread.c b/src/stdio/fread.c index aef75f73..733d3716 100644 --- a/src/stdio/fread.c +++ b/src/stdio/fread.c @@ -25,7 +25,7 @@ size_t fread(void *restrict destv, size_t size, size_t nmemb, FILE *restrict f) /* Read the remainder directly */ for (; l; l-=k, dest+=k) { k = __toread(f) ? 0 : f->read(f, dest, l); - if (k+1<=1) { + if (!k) { FUNLOCK(f); return (len-l)/size; } |