mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
xinclude: Report malloc failures in xmlXIncludeIncludeNode
This commit is contained in:
parent
7b316c1139
commit
0d04d79cd4
29
xinclude.c
29
xinclude.c
@ -1960,7 +1960,11 @@ xmlXIncludeIncludeNode(xmlXIncludeCtxtPtr ctxt, xmlXIncludeRefPtr ref) {
|
||||
end = list;
|
||||
list = list->next;
|
||||
|
||||
xmlAddPrevSibling(cur, end);
|
||||
if (xmlAddPrevSibling(cur, end) == NULL) {
|
||||
xmlUnlinkNode(end);
|
||||
xmlFreeNode(end);
|
||||
goto err_memory;
|
||||
}
|
||||
}
|
||||
/*
|
||||
* FIXME: xmlUnlinkNode doesn't coalesce text nodes.
|
||||
@ -1984,13 +1988,13 @@ xmlXIncludeIncludeNode(xmlXIncludeCtxtPtr ctxt, xmlXIncludeRefPtr ref) {
|
||||
xmlFreeNode(child);
|
||||
}
|
||||
end = xmlNewDocNode(cur->doc, cur->ns, cur->name, NULL);
|
||||
if (end == NULL) {
|
||||
xmlXIncludeErrMemory(ctxt);
|
||||
xmlFreeNodeList(list);
|
||||
return(-1);
|
||||
}
|
||||
if (end == NULL)
|
||||
goto err_memory;
|
||||
end->type = XML_XINCLUDE_END;
|
||||
xmlAddNextSibling(cur, end);
|
||||
if (xmlAddNextSibling(cur, end) == NULL) {
|
||||
xmlFreeNode(end);
|
||||
goto err_memory;
|
||||
}
|
||||
|
||||
/*
|
||||
* Add the list of nodes
|
||||
@ -1999,12 +2003,21 @@ xmlXIncludeIncludeNode(xmlXIncludeCtxtPtr ctxt, xmlXIncludeRefPtr ref) {
|
||||
cur = list;
|
||||
list = list->next;
|
||||
|
||||
xmlAddPrevSibling(end, cur);
|
||||
if (xmlAddPrevSibling(end, cur) == NULL) {
|
||||
xmlUnlinkNode(cur);
|
||||
xmlFreeNode(cur);
|
||||
goto err_memory;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
return(0);
|
||||
|
||||
err_memory:
|
||||
xmlXIncludeErrMemory(ctxt);
|
||||
xmlFreeNodeList(list);
|
||||
return(-1);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user