This commit is contained in:
Thomas Bernard
2018-11-22 13:43:43 +01:00
parent aeaf468c4b
commit ab5d26897f

View File

@@ -492,7 +492,7 @@ unsigned long File_length_file(FILE * file)
offset_backup = ftell(file);
if (offset_backup < 0)
return 0;
if (fseek(file, 0, SEEK_END) < 0
if (fseek(file, 0, SEEK_END) < 0)
return 0;
file_length = ftell(file);
if (file_length < 0)