fixing bug #87900 Daniel

* parser.c: fixing bug #87900
Daniel
This commit is contained in:
Daniel Veillard 2002-08-20 12:02:44 +00:00
parent 32260e278b
commit 0b348def38
2 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,7 @@
Tue Aug 20 14:02:00 CEST 2002 Daniel Veillard <daniel@veillard.com>
* parser.c: fixing bug #87900
May 24 13:10:22 CEST 2002 Daniel Veillard <daniel@veillard.com> May 24 13:10:22 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxml.spec.in: fixing bug #81112 * libxml.spec.in: fixing bug #81112

View File

@ -10985,10 +10985,14 @@ int xmlSAXUserParseMemory(xmlSAXHandlerPtr sax, void *user_data,
char *buffer, int size) { char *buffer, int size) {
int ret = 0; int ret = 0;
xmlParserCtxtPtr ctxt; xmlParserCtxtPtr ctxt;
xmlSAXHandlerPtr oldsax;
ctxt = xmlCreateMemoryParserCtxt(buffer, size); ctxt = xmlCreateMemoryParserCtxt(buffer, size);
if (ctxt == NULL) return -1; if (ctxt == NULL) return -1;
ctxt->sax = sax; if (sax != NULL) {
oldsax = ctxt->sax;
ctxt->sax = sax;
}
ctxt->userData = user_data; ctxt->userData = user_data;
xmlParseDocument(ctxt); xmlParseDocument(ctxt);
@ -11002,7 +11006,7 @@ int xmlSAXUserParseMemory(xmlSAXHandlerPtr sax, void *user_data,
ret = -1; ret = -1;
} }
if (sax != NULL) if (sax != NULL)
ctxt->sax = NULL; ctxt->sax = oldsax;
xmlFreeParserCtxt(ctxt); xmlFreeParserCtxt(ctxt);
return ret; return ret;