fixed #71740 NotationDecl with a required field missing Daniel

* valid.c SAX.c: fixed #71740 NotationDecl with a required field
  missing
Daniel
This commit is contained in:
Daniel Veillard 2002-02-17 23:07:47 +00:00
parent c7612996ad
commit 7aea52d03e
3 changed files with 14 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Mon Feb 18 00:06:42 CET 2002 Daniel Veillard <daniel@veillard.com>
* valid.c SAX.c: fixed #71740 NotationDecl with a required field
missing
Sun Feb 17 23:45:40 CET 2002 Daniel Veillard <daniel@veillard.com>
* check-xml-test-suite.py: improved the behaviour a bit as

9
SAX.c
View File

@ -569,7 +569,14 @@ notationDecl(void *ctx, const xmlChar *name,
"SAX.notationDecl(%s, %s, %s)\n", name, publicId, systemId);
#endif
if (ctxt->inSubset == 1)
if ((publicId == NULL) && (systemId == NULL)) {
if ((ctxt->sax != NULL) && (ctxt->sax->error != NULL))
ctxt->sax->error(ctxt,
"SAX.notationDecl(%s) externalID or PublicID missing\n", name);
ctxt->valid = 0;
ctxt->wellFormed = 0;
return;
} else if (ctxt->inSubset == 1)
nota = xmlAddNotationDecl(&ctxt->vctxt, ctxt->myDoc->intSubset, name,
publicId, systemId);
else if (ctxt->inSubset == 2)

View File

@ -1628,6 +1628,7 @@ xmlAddNotationDecl(xmlValidCtxtPtr ctxt ATTRIBUTE_UNUSED, xmlDtdPtr dtd,
if ((PublicID == NULL) && (SystemID == NULL)) {
xmlGenericError(xmlGenericErrorContext,
"xmlAddNotationDecl: no PUBLIC ID nor SYSTEM ID\n");
return(NULL);
}
/*