mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
parser: Add NULL check in xmlNewIOInputStream
This commit is contained in:
parent
bc793390d5
commit
e72eda101e
@ -1209,7 +1209,7 @@ xmlSwitchEncoding(xmlParserCtxtPtr ctxt, xmlCharEncoding enc)
|
||||
|
||||
/**
|
||||
* xmlSwitchInputEncodingName:
|
||||
* @ctxt: the parser context, only for error reporting
|
||||
* @ctxt: the parser context
|
||||
* @input: the input strea,
|
||||
* @encoding: the encoding name
|
||||
*
|
||||
@ -2079,7 +2079,7 @@ xmlNewIOInputStream(xmlParserCtxtPtr ctxt, xmlParserInputBufferPtr buf,
|
||||
xmlParserInputPtr input;
|
||||
const char *encoding;
|
||||
|
||||
if (buf == NULL)
|
||||
if ((ctxt == NULL) || (buf == NULL))
|
||||
return(NULL);
|
||||
|
||||
input = xmlNewInputInternal(buf, NULL);
|
||||
|
Loading…
x
Reference in New Issue
Block a user