Yan Seiner wrote:
> there some special way I need to free these pointers:
>
> I am freeing them in the following order:
>
> xmlFree(xpathCtx);
> xmlFree(xpathObj);
> xmlFreeDoc(doc);
>   
Sorry!

That's actually

xmlFree(xpathObj);

xmlFree(xpathCtx);

xmlFreeDoc(doc);


_______________________________________________
xml mailing list, project page  http://xmlsoft.org/
[email protected]
http://mail.gnome.org/mailman/listinfo/xml

Reply via email to