我正在使用 libxml2 来解析我的 iPhone 应用程序中的 xml 内容。xml 内容是从类似于 Apple 自己的 TopSongs 示例应用程序的服务器下载的。当我使用 Instruments 工具检查泄漏时,我看到 xmlNewParserCtxt、xmlNewInputStream 和 xmlAllocParserInputBuffer 上报告了内存泄漏。我在适用的地方 (dealloc) 调用了 xmlFreeParserCtxt(context)。
我错过了其他东西吗?这是使用 libxml2 解析器时要解决的已知问题吗?