mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
fix a nasty bug introduced when cleaning up entities processing in 2.7.x ,
* parser.c: fix a nasty bug introduced when cleaning up entities processing in 2.7.x , fixes #554660 Daniel svn path=/trunk/; revision=3798
This commit is contained in:
parent
a57ba4ce96
commit
34a7fc3820
@ -1,3 +1,8 @@
|
||||
Thu Oct 2 22:53:39 CEST 2008 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* parser.c: fix a nasty bug introduced when cleaning up
|
||||
entities processing in 2.7.x , fixes #554660
|
||||
|
||||
Thu Sep 25 18:04:20 CEST 2008 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* HTMLparser.c: fix an HTML parsing error on large data sections
|
||||
|
4
parser.c
4
parser.c
@ -7225,8 +7225,10 @@ xmlParseStringEntityRef(xmlParserCtxtPtr ctxt, const xmlChar ** str) {
|
||||
* Predefined entites override any extra definition
|
||||
*/
|
||||
ent = xmlGetPredefinedEntity(name);
|
||||
if (ent != NULL)
|
||||
if (ent != NULL) {
|
||||
*str = ptr;
|
||||
return(ent);
|
||||
}
|
||||
|
||||
/*
|
||||
* Increate the number of entity references parsed
|
||||
|
Loading…
x
Reference in New Issue
Block a user