mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
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:
parent
8bf70b956a
commit
e2830f1e65
@ -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
6
NEWS
@ -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
4
SAX.c
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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#
|
||||
|
@ -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>
|
||||
|
@ -257,6 +257,7 @@ xmlOutputBufferCreateOwn(FILE *file, xmlCharEncodingHandlerPtr encoder) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
} </pre>
|
||||
|
1
parser.c
1
parser.c
@ -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");
|
||||
|
Loading…
x
Reference in New Issue
Block a user