strcat(name_f,".dat");
/* me devuelve el ID del bloque donde quepa un registro y el espacio libre en "fs"*/
- block_id = emufs_fsc_buscar_lugar(efs, reg_size, &fs);
+ block_id = emufs_fsc_buscar_lugar(efs, reg_size+sizeof(EMUFS_REG_ID)+sizeof(EMUFS_REG_SIZE), &fs);
/* si no hay bloques con suficiente espacio creo un bloque nuevo */
if (block_id == EMUFS_NOT_FOUND) {
/* crear un nuevo bloque en memoria */
}
/* actualizo el indice de bloques y registros */
- *err = emufs_idx_agregar(efs, block_id, reg_id);
+ *err = emufs_idx_agregar(efs, reg_id, block_id);
if (*err){
PERR("No se pudo agregar idx");
return EMUFS_NOT_FOUND;
int emufs_tipo1_header_jump(FILE* fp)
{
- if (fseek(fp, 0l, SEEK_END)) {
+ if (fseek(fp, emufs_tipo1_header_size(), SEEK_CUR)) {
PERR("No se pudo hacer fseek()");
return 8; /* EMUFS_ERROR_SEEK_FILE */
}