fixed problem with invalid char encountered during text include (reported

* xinclude.c: fixed problem with invalid char encountered during text include (reported on xslt mailing list)

svn path=/trunk/; revision=3583
This commit is contained in:
William M. Brack 2007-02-13 00:37:20 +00:00
parent fde5b0b9ca
commit 53ce98cd03
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Mon Feb 12 16:40:48 PST 2007 William Brack <wbrack@mmm.com.hk>
* xinclude.c: fixed problem with invalid char encountered
during text include (reported on xslt mailing list)
Mon Feb 12 18:30:01 CET 2007 Daniel Veillard <daniel@veillard.com>
* Makefile.am: small cleanup to avoid packaging .svn

View File

@ -1889,6 +1889,9 @@ xmlXIncludeLoadTxt(xmlXIncludeCtxtPtr ctxt, const xmlChar *url, int nr) {
xmlXIncludeErr(ctxt, ctxt->incTab[nr]->ref,
XML_XINCLUDE_INVALID_CHAR,
"%s contains invalid char\n", URL);
xmlFreeParserInputBuffer(buf);
xmlFree(URL);
return(-1);
} else {
xmlNodeAddContentLen(node, &content[i], l);
}