mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
xinclude: Don't use xmlHasNsProp
This function can malloc and doesn't report failures. Another design mistake is that xmlUnsetNsProp requires an xmlNs struct.
This commit is contained in:
parent
fe3cbf897e
commit
365976dbe0
11
xinclude.c
11
xinclude.c
@ -612,7 +612,7 @@ xmlXIncludeBaseFixup(xmlXIncludeCtxtPtr ctxt, xmlNodePtr cur, xmlNodePtr copy,
|
|||||||
const xmlChar *targetBase) {
|
const xmlChar *targetBase) {
|
||||||
xmlChar *base = NULL;
|
xmlChar *base = NULL;
|
||||||
xmlChar *relBase = NULL;
|
xmlChar *relBase = NULL;
|
||||||
xmlAttrPtr attr;
|
xmlNs ns;
|
||||||
int res;
|
int res;
|
||||||
|
|
||||||
if (xmlNodeGetBaseSafe(cur->doc, cur, &base) < 0)
|
if (xmlNodeGetBaseSafe(cur->doc, cur, &base) < 0)
|
||||||
@ -645,12 +645,9 @@ xmlXIncludeBaseFixup(xmlXIncludeCtxtPtr ctxt, xmlNodePtr cur, xmlNodePtr copy,
|
|||||||
/*
|
/*
|
||||||
* Delete existing xml:base if bases are equal
|
* Delete existing xml:base if bases are equal
|
||||||
*/
|
*/
|
||||||
attr = xmlHasNsProp(copy, BAD_CAST "base",
|
memset(&ns, 0, sizeof(ns));
|
||||||
XML_XML_NAMESPACE);
|
ns.href = XML_XML_NAMESPACE;
|
||||||
if (attr != NULL) {
|
xmlUnsetNsProp(copy, &ns, BAD_CAST "base");
|
||||||
xmlUnlinkNode((xmlNodePtr) attr);
|
|
||||||
xmlFreeProp(attr);
|
|
||||||
}
|
|
||||||
|
|
||||||
done:
|
done:
|
||||||
xmlFree(base);
|
xmlFree(base);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user