Browse Source

fix fwrite return value when full write does not succeed

Rich Felker 12 năm trước cách đây
mục cha
commit
cea106fb89
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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);