From b692f5e25c543825a9d3f2f4181e5cffb84577d1 Mon Sep 17 00:00:00 2001 From: Ricardo Markiewicz Date: Mon, 19 Apr 2004 07:40:45 +0000 Subject: [PATCH] * Hago que el memcpy que limpia cuando se borra ande. --- emufs/tipo1.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/emufs/tipo1.c b/emufs/tipo1.c index e703326..d772998 100644 --- a/emufs/tipo1.c +++ b/emufs/tipo1.c @@ -436,8 +436,7 @@ int emufs_tipo1_borrar_registro(EMUFS* efs, EMUFS_REG_ID reg_id) memcpy(block + offset, block + offset_reg_end, efs->tam_bloque - offset_reg_end); /* rellena el espacio libre con ceros para la GUI */ - /* FIXME memset(block + offset_reg_end, 0, - efs->tam_bloque - offset_reg_end);*/ + memset(block+efs->tam_bloque-offset_reg_end, 0, offset_reg_end); } } /* guardo el bloque en disco (actualizando espacio libre) */ -- 2.43.0