]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/common.c
Puto bug que no podia encontrar hace 3 dias, FIXED!!!!!
[z.facultad/75.06/emufs.git] / emufs / common.c
index f2dfc93214a92093dcccfa42d39483d6ec07094a..3906e057b8eed03db48c42001b3de1cd7e4131f3 100644 (file)
@@ -46,6 +46,7 @@ long emufs_common_get_file_size(const char* filename, int* err)
                *err = EMUFS_ERROR_CANT_OPEN_FILE;
                return 0;
        }
+       fseek(file, 0, SEEK_END);
        file_size = ftell(file);
        fclose(file);
        if (file_size < 0) {
@@ -55,4 +56,3 @@ long emufs_common_get_file_size(const char* filename, int* err)
        }
        return file_size;
 }
-