之前我成功使用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。
答案 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);
}
}