- art.numero = atoi(xmlGetProp(node, "NroArtículo"));
- strcpy(art.desc, xmlGetProp(node, "Descripción"));
- strcpy(art.presentacion, xmlGetProp(node, "Presentación"));
- strcpy(art.existencia, xmlGetProp(node, "Existencia"));
+ prop = xmlGetProp(node, "NroArtículo");
+ art.numero = atoi(prop);
+ xmlFree(prop);
+ strcpy(art.desc, prop = xmlGetProp(node, "Descripción")); xmlFree(prop);
+ strcpy(art.presentacion, prop = xmlGetProp(node, "Presentación")); xmlFree(prop);
+ strcpy(art.existencia, prop = xmlGetProp(node, "Existencia")); xmlFree(prop);