all printf variants: fix argument type handling for %c and %lc
[musl] / src / stdio / fread.c
index 33a65f5..a2116da 100644 (file)
@@ -7,12 +7,13 @@ size_t fread(void *restrict destv, size_t size, size_t nmemb, FILE *restrict f)
 {
        unsigned char *dest = destv;
        size_t len = size*nmemb, l = len, k;
+       if (!size) nmemb = 0;
 
        FLOCK(f);
 
        f->mode |= f->mode-1;
 
-       if (f->rend - f->rpos > 0) {
+       if (f->rpos != f->rend) {
                /* First exhaust the buffer. */
                k = MIN(f->rend - f->rpos, l);
                memcpy(dest, f->rpos, k);
@@ -24,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;
                }