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;
|
||||
}
|
||||
|
||||
*out = ret;
|
||||
if (out != NULL)
|
||||
*out = ret;
|
||||
return(0);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user