xpath: Make contextSize and proximityPosition default to 1

In the general case of processing a single node, these values should be
set to 1.
This commit is contained in:
Nick Wellnhofer 2024-12-21 16:25:14 +01:00
parent e014cc570f
commit afbc0a0405

View File

@ -5005,8 +5005,8 @@ xmlXPathNewContext(xmlDocPtr doc) {
ret->nsHash = NULL;
ret->user = NULL;
ret->contextSize = -1;
ret->proximityPosition = -1;
ret->contextSize = 1;
ret->proximityPosition = 1;
#ifdef XP_DEFAULT_CACHE_ON
if (xmlXPathContextSetCache(ret, 1, -1, 0) == -1) {