mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
malloc-fail: Report malloc failure in xmlXPathNumberFunction
This commit is contained in:
parent
355fbe3ab7
commit
bcefef202e
2
xpath.c
2
xpath.c
@ -8614,6 +8614,8 @@ xmlXPathNumberFunction(xmlXPathParserContextPtr ctxt, int nargs) {
|
||||
valuePush(ctxt, xmlXPathCacheNewFloat(ctxt, 0.0));
|
||||
} else {
|
||||
xmlChar* content = xmlNodeGetContent(ctxt->context->node);
|
||||
if (content == NULL)
|
||||
xmlXPathPErrMemory(ctxt, NULL);
|
||||
|
||||
res = xmlXPathStringEvalNumber(content);
|
||||
valuePush(ctxt, xmlXPathCacheNewFloat(ctxt, res));
|
||||
|
Loading…
x
Reference in New Issue
Block a user