This commit is contained in:
Borja Ferrer 2006-08-18 13:05:09 +00:00
parent 010ef526c5
commit 7af82f0d4f

View File

@ -111,7 +111,7 @@ void MD5::update(FILE *file){
unsigned char buffer[1024];
int len;
while (len=fread(buffer, 1, 1024, file))
while ((len=fread(buffer, 1, 1024, file)))
update(buffer, len);
fclose (file);