0

我正在使用 libxml2 和 libxslt 从 C++ 程序进行 XML 处理。为了使用 XSL 转换 XML 文档,我使用以下函数(删除了错误处理):

xmlDocPtr
transformXmlDocument(
    const xmlDocPtr inputDocument,
    const std::string& stylesheetString
    ) {

    exsltRegisterAll();

    // Read the stylesheet document.
    xmlDocPtr stylesheetDocument = xmlReadMemory(
            stylesheetString.c_str(),
            stylesheetString.length(),
            "stylesheet.xsd",
            0, // No encoding set - get it from the file header.
            0  // No further options.
    );

    // Parse the stylesheet
    xsltStylesheetPtr stylesheet = xsltParseStylesheetDoc(stylesheetDocument);

    // Transform the document
    xmlDocPtr result = xsltApplyStylesheet(stylesheet, inputDocument, 0);

    // Free used resources
    xsltFreeStylesheet(stylesheet);
    xsltCleanupGlobals();

    // Here the program crashes
    xmlFreeDoc(stylesheetDocument);

    return result;
}

问题是程序在倒数第二行因访问冲突而崩溃(glibc 说:free(): invalid pointer: 0x00000000026d8090 * )。

我在文档中找不到 xsltFreeStylesheet 也释放底层文档或其他东西的任何提示,那么这里有什么问题?

4

1 回答 1

2

xsltFreeStylesheet 也释放底层文档什么的

精美的手册有一些提示,表明确实有可能发生这种情况。

于 2012-09-09T19:40:22.980 回答