mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-03-19 14:50:07 +03:00
Report undefined XPath variable error message
Commit c851970 removed a redundant error message if XPath evaluation failed. This uncovered a case where an undefined XPath variable error wasn't reported correctly. Thanks to Petr Pisar for the report. Fixes bug 787941.
This commit is contained in:
parent
b90d8989d3
commit
3157cf4e53
12
xpath.c
12
xpath.c
@ -13531,10 +13531,8 @@ xmlXPathCompOpEval(xmlXPathParserContextPtr ctxt, xmlXPathStepOpPtr op)
|
||||
xmlXPathCompOpEval(ctxt, &comp->steps[op->ch1]);
|
||||
if (op->value5 == NULL) {
|
||||
val = xmlXPathVariableLookup(ctxt->context, op->value4);
|
||||
if (val == NULL) {
|
||||
ctxt->error = XPATH_UNDEF_VARIABLE_ERROR;
|
||||
return(0);
|
||||
}
|
||||
if (val == NULL)
|
||||
XP_ERROR0(XPATH_UNDEF_VARIABLE_ERROR);
|
||||
valuePush(ctxt, val);
|
||||
} else {
|
||||
const xmlChar *URI;
|
||||
@ -13549,10 +13547,8 @@ xmlXPathCompOpEval(xmlXPathParserContextPtr ctxt, xmlXPathStepOpPtr op)
|
||||
}
|
||||
val = xmlXPathVariableLookupNS(ctxt->context,
|
||||
op->value4, URI);
|
||||
if (val == NULL) {
|
||||
ctxt->error = XPATH_UNDEF_VARIABLE_ERROR;
|
||||
return(0);
|
||||
}
|
||||
if (val == NULL)
|
||||
XP_ERROR0(XPATH_UNDEF_VARIABLE_ERROR);
|
||||
valuePush(ctxt, val);
|
||||
}
|
||||
return (total);
|
||||
|
Loading…
x
Reference in New Issue
Block a user