- if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
- free(art);
- free(tmp);
- return NULL;
- }
- free(tmp);
- return art;
- }
- nodo = nodo->sig;
+ (*id) = -1; /* XXX Ver que se hacia con esto */
+ art = (t_Articulo *)malloc(sizeof(t_Articulo));
+ /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
+ error = 0;
+ k = emufs_indice_generar_clave_desde_valor(lst->fp->indices, (char *)&numero);
+ tmp = lst->fp->leer_registro(lst->fp, k, &size, &error);
+ if (error) {
+ free(art);
+ return NULL;
+ }
+
+ if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
+ free(art);
+ free(tmp);
+ return NULL;