在xmlTextReaderGetAttribute()之后释放xmlChar指针

时间:2011-12-08 21:01:04

标签: c++ c free libxml2

之前我成功使用xmlTextReaderGetAttribute(来自xmlsoft.org),但API文档要求我取消分配返回的xmlChar*。现在我的应用程序在第二个(第一次传递null)调用free()时崩溃,如下所示:

xmlTextReaderPtr reader = null;
xmlChar *attribVal = null;
//blah...
if (xmlTextReaderAttributeCount(reader) > 0) {
    free((attribVal));

attribVal = xmlTextReaderGetAttribute(reader, (const xmlChar*)"super-Attrib");
if (xmlStrcasecmp(attribVal, (const xmlChar*)"monoMega-Attrib") == 0) {
    free((attribVal));

我的项目是用C ++编写的,但是libxml2和xmlsoft.org中的所有示例都使用标准C。

1 个答案:

答案 0 :(得分:6)

直接使用xmlFree()代替free()

xmlTextReaderPtr reader = null; 
xmlChar *attribVal = null; 
//blah... 
if (xmlTextReaderAttributeCount(reader) > 0)
{ 
    attribVal = xmlTextReaderGetAttribute(reader, BAD_CAST "super-Attrib"); 
    if (attribVal)
    {
        ...
        xmlFree(attribVal);
    }
}