mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
reader: Add argument checks
This commit is contained in:
parent
49164610a4
commit
e6045ed754
@ -5009,6 +5009,8 @@ xmlTextReaderSetup(xmlTextReaderPtr reader,
|
||||
void
|
||||
xmlTextReaderSetMaxAmplification(xmlTextReaderPtr reader, unsigned maxAmpl)
|
||||
{
|
||||
if (reader == NULL)
|
||||
return;
|
||||
xmlCtxtSetMaxAmplification(reader->ctxt, maxAmpl);
|
||||
}
|
||||
|
||||
@ -5023,7 +5025,7 @@ xmlTextReaderSetMaxAmplification(xmlTextReaderPtr reader, unsigned maxAmpl)
|
||||
const xmlError *
|
||||
xmlTextReaderGetLastError(xmlTextReaderPtr reader)
|
||||
{
|
||||
if (reader == NULL)
|
||||
if ((reader == NULL) || (reader->ctxt == NULL))
|
||||
return(NULL);
|
||||
return(&reader->ctxt->lastError);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user