mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2024-12-25 23:21:26 +03:00
Fixes bug #106931 in XInclude entities merging. Daniel
* xinclude.c: Fixes bug #106931 in XInclude entities merging. Daniel
This commit is contained in:
parent
fcc822e2db
commit
2406abda9c
@ -1,3 +1,7 @@
|
||||
Mon Feb 24 19:14:57 CET 2003 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* xinclude.c: Fixes bug #106931 in XInclude entities merging.
|
||||
|
||||
Mon Feb 24 18:50:35 CET 2003 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* SAX.c: fixed bug #105992
|
||||
|
@ -1062,6 +1062,9 @@ xmlXIncludeMergeEntity(xmlEntityPtr ent, xmlXIncludeMergeDataPtr data,
|
||||
} else if ((ent->SystemID != NULL) && (prev->SystemID != NULL)) {
|
||||
if (!xmlStrEqual(ent->ExternalID, prev->ExternalID))
|
||||
goto error;
|
||||
} else if ((ent->content != NULL) && (prev->content != NULL)) {
|
||||
if (!xmlStrEqual(ent->content, prev->content))
|
||||
goto error;
|
||||
} else {
|
||||
goto error;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user