all printf variants: fix argument type handling for %c and %lc
[musl] / src / stdio / fread.c
index 5c23577..a2116da 100644 (file)
@@ -1,18 +1,19 @@
 #include "stdio_impl.h"
+#include <string.h>
 
 #define MIN(a,b) ((a)<(b) ? (a) : (b))
 
-size_t fread(void *destv, size_t size, size_t nmemb, FILE *f)
+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;
-
-       /* Never touch the file if length is zero.. */
-       if (!l) return 0;
+       if (!size) nmemb = 0;
 
        FLOCK(f);
 
-       if (f->rend - f->rpos > 0) {
+       f->mode |= f->mode-1;
+
+       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 *destv, size_t size, size_t nmemb, FILE *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;
                }