mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
xinclude: Fix 'last' pointer in xmlXIncludeCopyNode
Also set the 'last' pointer for the root node. Fixes https://gitlab.gnome.org/GNOME/libxslt/-/issues/93
This commit is contained in:
parent
2b998a4ffb
commit
a35eb8a642
@ -733,10 +733,11 @@ xmlXIncludeCopyNode(xmlXIncludeCtxtPtr ctxt, xmlNodePtr elem,
|
||||
return(result);
|
||||
|
||||
while (cur->next == NULL) {
|
||||
if (insertParent != NULL)
|
||||
insertParent->last = insertLast;
|
||||
cur = cur->parent;
|
||||
if (cur == elem)
|
||||
return(result);
|
||||
insertParent->last = insertLast;
|
||||
insertLast = insertParent;
|
||||
insertParent = insertParent->parent;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user