X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/4c6d9fa59f147b866ca1caee571c646d78286b10..db30ec34669e71266f038fcf7cb2386fa210d531:/emufs/tipo2.c diff --git a/emufs/tipo2.c b/emufs/tipo2.c index e0c3aba..b2724e9 100644 --- a/emufs/tipo2.c +++ b/emufs/tipo2.c @@ -318,6 +318,7 @@ void emufs_tipo2_compactar(EMUFS *efs) /* Obtengo la cantidad de gaps */ if ( (fscfile = fopen(name_ffsc,"rb")) == NULL){ PERR("No se pudo abrir el archivo"); + fclose(datfile); return; } fseek(fscfile,0,SEEK_END); @@ -478,12 +479,12 @@ void* emufs_tipo2_leer_registro_raw(EMUFS *efs, EMUFS_REG_ID id, EMUFS_REG_SIZE fseek(f_data,reg_offset+sizeof(EMUFS_REG_ID), SEEK_SET); fread(size,sizeof(EMUFS_REG_SIZE),1,f_data); registro = (char*)malloc(*size+sizeof(EMUFS_REG_ID)+sizeof(EMUFS_REG_SIZE)+100); - if (reg_offset > 50) { + if (reg_offset >= 50) { fseek(f_data, reg_offset - 50, SEEK_SET); (*pos) = 50; } else { /* Si no hay 50 antes mio, estoy cerca del 0! */ - (*pos) = 50 - reg_offset; + (*pos) = reg_offset; fseek(f_data, 0, SEEK_SET); } (*size) += sizeof(EMUFS_REG_ID)+sizeof(EMUFS_REG_SIZE)+100;