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:
parent
3f3b4f372e
commit
25239c1c22
@ -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
2
SAX.c
@ -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))
|
||||
|
Loading…
x
Reference in New Issue
Block a user