mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
- Windows: SDK version 10.0.20348.0 is now required. - MacOS: SDK version 12.3 (Xcode 13.3) is now required. - Legacy swiftshader binaries (`swiftshader/*` on Win/Linux and `libswiftshader_*.dylib` on MacOS) have been removed (see issue #3176).
15 lines
561 B
Diff
15 lines
561 B
Diff
diff --git third_party/libxml/src/tree.c third_party/libxml/src/tree.c
|
|
index 8077348a980a1..46c0b6eddb486 100644
|
|
--- third_party/libxml/src/tree.c
|
|
+++ third_party/libxml/src/tree.c
|
|
@@ -4361,7 +4361,8 @@ xmlStaticCopyNode(xmlNodePtr node, xmlDocPtr doc, xmlNodePtr parent,
|
|
}
|
|
insert->last = copy;
|
|
|
|
- if (cur->children != NULL) {
|
|
+ if ((cur->type != XML_ENTITY_REF_NODE) &&
|
|
+ (cur->children != NULL)) {
|
|
cur = cur->children;
|
|
insert = copy;
|
|
continue;
|