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:
Nick Wellnhofer 2023-09-08 14:52:22 +02:00
parent 2b998a4ffb
commit a35eb8a642

View File

@ -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;
}