GNOME Bugzilla – Bug 54322
_private data lost when parsing external entities
Last modified: 2009-08-15 18:40:50 UTC
The ctxt pointer you pass to xmlParseChunk() is not used when parsing external entities (a new ctxt is created), thus losing your _private data which you might wish to use in callbacks. A solution would be to either fix it to use the same ctxt pointer, or somehow optionally copy the _private data over to the new ctxt structure.