]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs_gui/articulos.c
* Se inicializa otro err no inicializado.
[z.facultad/75.06/emufs.git] / emufs_gui / articulos.c
index 37874971dac4ea6a0589b3dbd8b98c910537d74d..60302c5cdff393301cdd49abf0da1144b095b748 100644 (file)
@@ -60,7 +60,7 @@ t_LstArticulos *art_cargar(const char *filename)
                /* leo los datos y los guardo en el archivo*/
                cant = 0;
                /* FIXME : por ahora hago que entren 2 bloques y me sobre algo de espacio*/
                /* leo los datos y los guardo en el archivo*/
                cant = 0;
                /* FIXME : por ahora hago que entren 2 bloques y me sobre algo de espacio*/
-               tmp->fp = emufs_crear("articulos", T1, sizeof(t_Articulo)*2, sizeof(t_Articulo)); 
+               tmp->fp = emufs_crear("articulos", T3, sizeof(t_Articulo)*2, sizeof(t_Articulo)); 
                for (node=inicio ; node ; node = node->next) {
                        if (node->type == XML_ELEMENT_NODE) {
                                if (strcmp(node->name, "ARTICULO") == 0) {
                for (node=inicio ; node ; node = node->next) {
                        if (node->type == XML_ELEMENT_NODE) {
                                if (strcmp(node->name, "ARTICULO") == 0) {
@@ -78,6 +78,7 @@ t_LstArticulos *art_cargar(const char *filename)
                                                tmp->array[cant].num_reg = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
                                                tmp->array[cant].numero = art.numero;
                                                ++cant;
                                                tmp->array[cant].num_reg = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
                                                tmp->array[cant].numero = art.numero;
                                                ++cant;
+                                               free(save);
                                        }
                                }
                        }
                                        }
                                }
                        }
@@ -100,7 +101,7 @@ int art_liberar(t_LstArticulos *l)
 
        ver_archivo_FS(l->fp);
        emufs_destruir(l->fp);
 
        ver_archivo_FS(l->fp);
        emufs_destruir(l->fp);
-       free(l->array);
+/*     free(l->array); */
        free(l);
 
        lst_articulos = NULL;
        free(l);
 
        lst_articulos = NULL;
@@ -112,7 +113,8 @@ t_Articulo *art_obtener(t_LstArticulos *lst, const char *numero)
        /* FIXME : NO ME GUSTA :-/ */
        t_Articulo *art;
        void *tmp;
        /* FIXME : NO ME GUSTA :-/ */
        t_Articulo *art;
        void *tmp;
-       int i,size;
+       int i,error;
+       EMUFS_REG_SIZE size;
        int n = atoi(numero);
 
        if (lst == NULL) lst = lst_articulos;
        int n = atoi(numero);
 
        if (lst == NULL) lst = lst_articulos;
@@ -122,7 +124,7 @@ t_Articulo *art_obtener(t_LstArticulos *lst, const char *numero)
                if (n == lst->array[i].numero) {
                        art = (t_Articulo *)malloc(sizeof(t_Articulo));
                        /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
                if (n == lst->array[i].numero) {
                        art = (t_Articulo *)malloc(sizeof(t_Articulo));
                        /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
-                       tmp = lst->fp->leer_registro(lst->fp, lst->array[i].num_reg, &size);
+                       tmp = lst->fp->leer_registro(lst->fp, lst->array[i].num_reg, &size, &error);
                        
                        if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
                                free(art);
                        
                        if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
                                free(art);
@@ -320,7 +322,7 @@ void *procesar_guardar_articulo(t_Articulo *src, int *size, t_LstArticulos *lst)
                        i[4] = sizeof(char)*(strlen(src->pvu)+1);
                        i[5] = sizeof(char)*(strlen(src->emin)+1);
                        (*size) = i[0]+i[1]+i[2]+i[3]+i[4]+i[5];
                        i[4] = sizeof(char)*(strlen(src->pvu)+1);
                        i[5] = sizeof(char)*(strlen(src->emin)+1);
                        (*size) = i[0]+i[1]+i[2]+i[3]+i[4]+i[5];
-                       tmp = (char *)malloc(*size);
+                       tmp = (char *)malloc((*size));
                        if (tmp == NULL) return NULL;
                        memcpy(tmp, &src->numero, i[0]);
                        memcpy(tmp+i[0], src->desc, i[1]);
                        if (tmp == NULL) return NULL;
                        memcpy(tmp, &src->numero, i[0]);
                        memcpy(tmp+i[0], src->desc, i[1]);