如果尝试清除,由于崩溃导致不可避免的libxml2 mem泄漏

时间:2018-07-27 19:05:08

标签: c++ xpath memory-leaks libxml2

我们正在使用libxml2来针对包含“已注册”变量的xmlcontext解析xpath。我们的析构函数尝试清理xmlXPathContextPtr和xmlDocPtr:

~CLibXpathContext()
{
    xmlXPathFreeContext(m_xpathContext); //causes crash if any vars registered
    xmlFreeDoc(m_xmlDoc);
}

我们正在按以下方式注册vars:

virtual bool addVariable(const char * name,  const char * val) override
{
    if (m_xpathContext )
    {
        xmlXPathObjectPtr valx = xmlXPathWrapCString((char*)val);
        return xmlXPathRegisterVariable(m_xpathContext, (xmlChar *)name, valx) == 0;
    }
    return false;
}

libxml2清理代码如下:

void xmlXPathFreeContext(xmlXPathContextPtr ctxt) {
if (ctxt == NULL) return;

if (ctxt->cache != NULL)
    xmlXPathFreeCache((xmlXPathContextCachePtr) ctxt->cache);
    xmlXPathRegisteredNsCleanup(ctxt);
    xmlXPathRegisteredFuncsCleanup(ctxt);
    xmlXPathRegisteredVariablesCleanup(ctxt); // this is causing the issue
    xmlResetError(&ctxt->lastError);
    xmlFree(ctxt);
}

有什么想法可能是我做错了,还是libxml2代码有问题?

我们还尝试在调用xmlXPathFreeContext方法之前取消注册所有已注册的var ...

1 个答案:

答案 0 :(得分:1)

您必须使用xmlXPathNewCString(const char *)而不是xmlXPathWrapCString(char *)。前者创建字符串的副本,而后者将字符串的所有权转移到XPath对象,从而在XPath对象被破坏时释放原始字符串