parser: Fix NULL checks for output arguments

This commit is contained in:
Nick Wellnhofer 2024-06-09 14:22:53 +02:00
parent f227086380
commit 8318b5a634
2 changed files with 3 additions and 2 deletions

View File

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

View File

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