mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
parser: Also raise error if ctxt is NULL
Update global error variable even if context is missing because of an invalid (NULL) argument.
This commit is contained in:
parent
6548ba11b8
commit
1e1b48918c
@ -176,8 +176,10 @@ xmlCtxtErrMemory(xmlParserCtxtPtr ctxt)
|
||||
xmlGenericErrorFunc channel = NULL;
|
||||
void *data;
|
||||
|
||||
if (ctxt == NULL)
|
||||
if (ctxt == NULL) {
|
||||
xmlRaiseMemoryError(NULL, NULL, NULL, XML_FROM_PARSER, NULL);
|
||||
return;
|
||||
}
|
||||
|
||||
ctxt->errNo = XML_ERR_NO_MEMORY;
|
||||
ctxt->instate = XML_PARSER_EOF; /* TODO: Remove after refactoring */
|
||||
@ -322,8 +324,16 @@ xmlCtxtVErr(xmlParserCtxtPtr ctxt, xmlNodePtr node, xmlErrorDomain domain,
|
||||
return;
|
||||
}
|
||||
|
||||
if (ctxt == NULL)
|
||||
if (ctxt == NULL) {
|
||||
res = xmlVRaiseError(NULL, NULL, NULL, NULL, node, domain, code,
|
||||
level, NULL, 0, (const char *) str1,
|
||||
(const char *) str2, (const char *) str3,
|
||||
int1, 0, msg, ap);
|
||||
if (res < 0)
|
||||
xmlRaiseMemoryError(NULL, NULL, NULL, XML_FROM_PARSER, NULL);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
if (PARSER_STOPPED(ctxt))
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user