Sfoglia il codice sorgente

fix fwrite return value when full write does not succeed

Rich Felker 12 anni fa
parent
commit
cea106fb89
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      src/stdio/fwrite.c

+ 1 - 1
src/stdio/fwrite.c

@@ -31,7 +31,7 @@ size_t fwrite(const void *src, size_t size, size_t nmemb, FILE *f)
 	FLOCK(f);
 	k = __fwritex(src, l, f);
 	FUNLOCK(f);
-	return k==l ? nmemb : l/size;
+	return k==l ? nmemb : k/size;
 }
 
 weak_alias(fwrite, fwrite_unlocked);