mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
parent
32260e278b
commit
0b348def38
@ -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
|
||||||
|
8
parser.c
8
parser.c
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user