X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/9b6d59d2a6f3ed7e0d2413c3730c29f1041dab2c..e81cf1f1af923bee85d60e896bbbe0491bca4264:/emufs/idx.c diff --git a/emufs/idx.c b/emufs/idx.c index 701ba25..18d4722 100644 --- a/emufs/idx.c +++ b/emufs/idx.c @@ -214,10 +214,12 @@ EMUFS_REG_ID *emufs_idx_get(EMUFS *emu, EMUFS_REG_ID *cant) count = 0; while (!feof(f_idx)) { if (fread(®, sizeof(EMUFS_IDX), 1, f_idx) != 1) continue; - count++; /* TODO : Verificar errores :-D */ - tmp = realloc(tmp, count); - tmp[count-1] = reg.id_reg; + if (reg.location != EMUFS_NOT_FOUND) { + count++; + tmp = realloc(tmp, count); + tmp[count-1] = reg.id_reg; + } } fclose(f_idx);