mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
xpath: Make recursion check work with xmlXPathCompile
The check for maximum recursion depth required a parser context with an xmlXPathContext which xmlXPathCompile didn't provide. All other code should already set up or require an xmlXPathContext.
This commit is contained in:
parent
d4e4f6f2e0
commit
7c4fef2412
27
xpath.c
27
xpath.c
@ -13030,6 +13030,7 @@ xmlXPathOptimizeExpression(xmlXPathParserContextPtr pctxt,
|
||||
xmlXPathCompExprPtr
|
||||
xmlXPathCtxtCompile(xmlXPathContextPtr ctxt, const xmlChar *str) {
|
||||
xmlXPathParserContextPtr pctxt;
|
||||
xmlXPathContextPtr tmpctxt = NULL;
|
||||
xmlXPathCompExprPtr comp;
|
||||
int oldDepth = 0;
|
||||
|
||||
@ -13041,18 +13042,32 @@ xmlXPathCtxtCompile(xmlXPathContextPtr ctxt, const xmlChar *str) {
|
||||
|
||||
xmlInitParser();
|
||||
|
||||
/*
|
||||
* We need an xmlXPathContext for the depth check.
|
||||
*/
|
||||
if (ctxt == NULL) {
|
||||
tmpctxt = xmlXPathNewContext(NULL);
|
||||
if (tmpctxt == NULL)
|
||||
return(NULL);
|
||||
ctxt = tmpctxt;
|
||||
}
|
||||
|
||||
pctxt = xmlXPathNewParserContext(str, ctxt);
|
||||
if (pctxt == NULL)
|
||||
if (pctxt == NULL) {
|
||||
if (tmpctxt != NULL)
|
||||
xmlXPathFreeContext(tmpctxt);
|
||||
return NULL;
|
||||
if (ctxt != NULL)
|
||||
oldDepth = ctxt->depth;
|
||||
}
|
||||
|
||||
oldDepth = ctxt->depth;
|
||||
xmlXPathCompileExpr(pctxt, 1);
|
||||
if (ctxt != NULL)
|
||||
ctxt->depth = oldDepth;
|
||||
ctxt->depth = oldDepth;
|
||||
|
||||
if( pctxt->error != XPATH_EXPRESSION_OK )
|
||||
{
|
||||
xmlXPathFreeParserContext(pctxt);
|
||||
if (tmpctxt != NULL)
|
||||
xmlXPathFreeContext(tmpctxt);
|
||||
return(NULL);
|
||||
}
|
||||
|
||||
@ -13077,6 +13092,8 @@ xmlXPathCtxtCompile(xmlXPathContextPtr ctxt, const xmlChar *str) {
|
||||
pctxt->comp = NULL;
|
||||
}
|
||||
xmlXPathFreeParserContext(pctxt);
|
||||
if (tmpctxt != NULL)
|
||||
xmlXPathFreeContext(tmpctxt);
|
||||
|
||||
if (comp != NULL) {
|
||||
comp->expr = xmlStrdup(str);
|
||||
|
Loading…
x
Reference in New Issue
Block a user