mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
parser: Fix NULL checks for output arguments
This commit is contained in:
parent
f227086380
commit
8318b5a634
@ -290,7 +290,8 @@ xmlAddEntity(xmlDocPtr doc, int extSubset, const xmlChar *name, int type,
|
|||||||
dtd->last = (xmlNodePtr) ret;
|
dtd->last = (xmlNodePtr) ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
*out = ret;
|
if (out != NULL)
|
||||||
|
*out = ret;
|
||||||
return(0);
|
return(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
2
parser.c
2
parser.c
@ -12172,7 +12172,7 @@ xmlParseCtxtExternalEntity(xmlParserCtxtPtr ctxt, const xmlChar *URL,
|
|||||||
xmlCtxtInitializeLate(ctxt);
|
xmlCtxtInitializeLate(ctxt);
|
||||||
|
|
||||||
list = xmlCtxtParseContent(ctxt, input, /* hasTextDecl */ 1, 1);
|
list = xmlCtxtParseContent(ctxt, input, /* hasTextDecl */ 1, 1);
|
||||||
if (*listOut != NULL)
|
if (listOut != NULL)
|
||||||
*listOut = list;
|
*listOut = list;
|
||||||
else
|
else
|
||||||
xmlFreeNodeList(list);
|
xmlFreeNodeList(list);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user