preparing 2.5.1 release fixing XmlTextReader bug Daniel

* configure.in doc/* NEWS: preparing 2.5.1 release
* SAX.c parser.c: fixing XmlTextReader bug
Daniel
This commit is contained in:
Daniel Veillard 2003-01-08 17:47:49 +00:00
parent 8bf70b956a
commit e2830f1e65
8 changed files with 31 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Wed Jan 8 18:32:25 CET 2003 Daniel Veillard <daniel@veillard.com>
* configure.in doc/* NEWS: preparing 2.5.1 release
* SAX.c parser.c: fixing XmlTextReader bug
Wed Jan 8 00:13:01 CET 2003 Daniel Veillard <daniel@veillard.com>
* SAX.c: fuck, I introduced a memory leak on external parsed

6
NEWS
View File

@ -17,6 +17,12 @@ to test those
2.5.1: Jan 8 2003:
- Fixes a memory leak and configuration/compilation problems in 2.5.0
- documentation updates (John)
- a couple of XmlTextReader fixes
2.5.0: Jan 6 2003:
- New XmltextReader interface based on C#
API (with help of Stéphane Bidoul)

4
SAX.c
View File

@ -374,7 +374,9 @@ getEntity(void *ctx, const xmlChar *name)
} else {
ret = xmlGetDocEntity(ctxt->myDoc, name);
}
if ((ret != NULL) && (ctxt->validate) && (ret->children == NULL) &&
if ((ret != NULL) &&
((ctxt->validate) || (ctxt->replaceEntities)) &&
(ret->children == NULL) &&
(ret->etype == XML_EXTERNAL_GENERAL_PARSED_ENTITY)) {
/*
* for validation purposes we really need to fetch and

View File

@ -6,7 +6,7 @@ AC_CANONICAL_HOST
LIBXML_MAJOR_VERSION=2
LIBXML_MINOR_VERSION=5
LIBXML_MICRO_VERSION=0
LIBXML_MICRO_VERSION=1
LIBXML_VERSION=$LIBXML_MAJOR_VERSION.$LIBXML_MINOR_VERSION.$LIBXML_MICRO_VERSION
LIBXML_VERSION_INFO=`expr $LIBXML_MAJOR_VERSION + $LIBXML_MINOR_VERSION`:$LIBXML_MICRO_VERSION:$LIBXML_MINOR_VERSION

View File

@ -104,6 +104,12 @@ to test those</p>
Schemas</a> and <a href="http://www.w3.org/TR/xinclude">XInclude</a>
</li>
</ul>
<h3>2.5.1: Jan 8 2003</h3>
<ul>
<li>Fixes a memory leak and configuration/compilation problems in 2.5.0</li>
<li>documentation updates (John)</li>
<li>a couple of XmlTextReader fixes</li>
</ul>
<h3>2.5.0: Jan 6 2003</h3>
<ul>
<li>New <a href="xmlreader.html">XmltextReader interface</a> based on C#

View File

@ -589,6 +589,13 @@ to test those</p>
Schemas</a> and <a href="http://www.w3.org/TR/xinclude">XInclude</a></li>
</ul>
<h3>2.5.1: Jan 8 2003</h3>
<ul>
<li>Fixes a memory leak and configuration/compilation problems in 2.5.0</li>
<li>documentation updates (John)</li>
<li>a couple of XmlTextReader fixes</li>
</ul>
<h3>2.5.0: Jan 6 2003</h3>
<ul>
<li>New <a href="xmlreader.html">XmltextReader interface</a> based on C#
@ -2792,6 +2799,7 @@ xmlOutputBufferCreateOwn(FILE *file, xmlCharEncodingHandlerPtr encoder) {
} </pre>

View File

@ -257,6 +257,7 @@ xmlOutputBufferCreateOwn(FILE *file, xmlCharEncodingHandlerPtr encoder) {
} </pre>

View File

@ -9477,6 +9477,7 @@ xmlParseCtxtExternalEntity(xmlParserCtxtPtr ctx, const xmlChar *URL,
ctxt = xmlCreateEntityParserCtxt(URL, ID, NULL);
if (ctxt == NULL) return(-1);
ctxt->userData = ctxt;
ctxt->_private = ctx->_private;
oldsax = ctxt->sax;
ctxt->sax = ctx->sax;
newDoc = xmlNewDoc(BAD_CAST "1.0");