1--- codes.c 2+++ codes.c 3@@ -128,7 +128,7 @@ 4 int nbytes; 5 6 MD5Init(&context); 7- while (nbytes = fread(buf, 1, sizeof(buf), infile)) { 8+ while ((nbytes = fread(buf, 1, sizeof(buf), infile))) { 9 length += nbytes; 10 MD5Update(&context, buf, nbytes); 11 } 12 13