fix a problem in externalSubsetSplit with a patch from Ashwin Daniel

* xmlschemas.c: fix a problem in externalSubsetSplit with a patch
  from Ashwin
Daniel

svn path=/trunk/; revision=3716
This commit is contained in:
Daniel Veillard 2008-03-26 13:39:31 +00:00
parent 97c9ce2e99
commit b3e453675a
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Wed Mar 26 14:38:31 CET 2008 Daniel Veillard <daniel@veillard.com>
* xmlschemas.c: fix a problem in externalSubsetSplit with a patch
from Ashwin
Tue Mar 25 17:48:02 CET 2008 Daniel Veillard <daniel@veillard.com>
* parser.c: fix various attribute normalisation problems reported

View File

@ -28108,8 +28108,8 @@ externalSubsetSplit(void *ctx, const xmlChar *name,
{
xmlSchemaSAXPlugPtr ctxt = (xmlSchemaSAXPlugPtr) ctx;
if ((ctxt != NULL) && (ctxt->user_sax != NULL) &&
(ctxt->user_sax->internalSubset != NULL))
ctxt->user_sax->internalSubset(ctxt->user_data, name, ExternalID,
(ctxt->user_sax->externalSubset != NULL))
ctxt->user_sax->externalSubset(ctxt->user_data, name, ExternalID,
SystemID);
}