1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-03-19 14:50:07 +03:00

- SAX.c: external subset notations were improperly registered

in the internal subset.
Daniel
This commit is contained in:
Daniel Veillard 2001-03-14 13:56:48 +00:00
parent 3f3b4f372e
commit 25239c1c22
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Wed Mar 14 14:55:46 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* SAX.c: external subset notations were improperly registered
in the internal subset.
Tue Mar 13 10:28:49 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* README.cvs-commits: added, pointing to HACKING

2
SAX.c
View File

@ -584,7 +584,7 @@ notationDecl(void *ctx, const xmlChar *name,
nota = xmlAddNotationDecl(&ctxt->vctxt, ctxt->myDoc->intSubset, name,
publicId, systemId);
else if (ctxt->inSubset == 2)
nota = xmlAddNotationDecl(&ctxt->vctxt, ctxt->myDoc->intSubset, name,
nota = xmlAddNotationDecl(&ctxt->vctxt, ctxt->myDoc->extSubset, name,
publicId, systemId);
else {
if ((ctxt->sax != NULL) && (ctxt->sax->error != NULL))