X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/7cd2e930f9665432a3bfa725b90bf3c0a3cb5617..cea6c333334aa778c0828c62821f4fafc099ea8c:/tipo3/emufs.c diff --git a/tipo3/emufs.c b/tipo3/emufs.c index 4d74097..53ba505 100644 --- a/tipo3/emufs.c +++ b/tipo3/emufs.c @@ -5,7 +5,9 @@ #define EXT_TIPO3_ID ".idx" #define EXT_TIPO3_DATA ".dat" #define EXT_TIPO3_DISP ".fsc" -#define EXT_TIPO3_IDS ".ids" +#define EXT_TIPO3_IDS ".did" + +char *str_dup(const char *s); char *str_dup(const char *s) { @@ -34,7 +36,7 @@ EMUFS *emufs_crear(const char *filename, char tipo, unsigned int tam_bloque, uns tmp->leer_bloque = leer_bloque; tmp->leer_registro = leer_registro; tmp->grabar_registro = grabar_registro; - tmp->borrar_registro = NULL; + tmp->borrar_registro = borrar_registro; tmp->nombre = str_dup(filename); strcpy(name, filename); @@ -85,6 +87,8 @@ EMUFS *emufs_abrir(const char *filename) strcpy(name, filename); strcat(name, EXT_TIPO3_DATA); + + /* Trato de determinar el tipo de archivo */ fp = fopen(name, "r"); if (fp == NULL) return NULL; fread(&tipo, sizeof(char), 1, fp); @@ -94,7 +98,10 @@ EMUFS *emufs_abrir(const char *filename) } tmp = (EMUFS *)malloc(sizeof(EMUFS)); - if (tmp == NULL) return NULL; + if (tmp == NULL) { + fclose(fp); + return NULL; + } switch (tipo) { case T1: @@ -107,7 +114,7 @@ EMUFS *emufs_abrir(const char *filename) tmp->leer_bloque = leer_bloque; tmp->leer_registro = leer_registro; tmp->grabar_registro = grabar_registro; - tmp->borrar_registro = NULL; + tmp->borrar_registro = borrar_registro; tmp->nombre = str_dup(filename); }