1. Every time if you release the xmlXPathFreeContext(self->xpath_ctx);, this function does not release the processed self->xpath_ctx->doc, but it must be: if (self->xpath_ctx && self->xpath_ctx->doc) xmlFreeDoc(self->xpath_ctx->doc); 2. In gc_web_service_get_string(), g_strdup does not need: *value = g_strdup ((char*)xmlXPathCastNodeSetToString (obj->nodesetval)); -> *value = (char*)xmlXPathCastNodeSetToString (obj->nodesetval); Such bugs can be avoided using unit tests+valgrind. Cheers! kecsap
Thanks Csaba, fixes are in git.
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.