/* 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) {
tmp->array[cant].num_reg = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
tmp->array[cant].numero = art.numero;
++cant;
+ free(save);
}
}
}
ver_archivo_FS(l->fp);
emufs_destruir(l->fp);
- free(l->array);
+/* free(l->array); */
free(l);
lst_articulos = NULL;
/* 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;
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);
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]);