Don't call xmlXPathInit directly

Call xmlInitParser which uses a lock to avoid race conditions.

Fixes #184.
This commit is contained in:
Nick Wellnhofer 2020-09-18 19:15:27 +02:00
parent b215c270fa
commit 8b88503a27
2 changed files with 4 additions and 4 deletions

View File

@ -14234,7 +14234,7 @@ xmlXPathCtxtCompile(xmlXPathContextPtr ctxt, const xmlChar *str) {
return(comp);
#endif
xmlXPathInit();
xmlInitParser();
pctxt = xmlXPathNewParserContext(str, ctxt);
if (pctxt == NULL)
@ -14323,7 +14323,7 @@ xmlXPathCompiledEvalInternal(xmlXPathCompExprPtr comp,
if (comp == NULL)
return(-1);
xmlXPathInit();
xmlInitParser();
#ifndef LIBXML_THREAD_ENABLED
reentance++;
@ -14468,7 +14468,7 @@ xmlXPathEval(const xmlChar *str, xmlXPathContextPtr ctx) {
CHECK_CTXT(ctx)
xmlXPathInit();
xmlInitParser();
ctxt = xmlXPathNewParserContext(str, ctx);
if (ctxt == NULL)

View File

@ -1352,7 +1352,7 @@ xmlXPtrEval(const xmlChar *str, xmlXPathContextPtr ctx) {
xmlXPathObjectPtr init = NULL;
int stack = 0;
xmlXPathInit();
xmlInitParser();
if ((ctx == NULL) || (str == NULL))
return(NULL);