fix d21527c0

This commit is contained in:
Thomas Bernard 2018-11-22 13:43:43 +01:00
parent aeaf468c4b
commit ab5d26897f
No known key found for this signature in database
GPG Key ID: 0FF11B67A5C0863C

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)