Revert "xpath: Make contextSize and proximityPosition default to 1"

This reverts commit afbc0a0405236de4ab8cbac94745e9885db0a198.
This commit is contained in:
Nick Wellnhofer 2025-02-13 19:45:41 +01:00
parent 9c16a153d8
commit 69b91da3a8

View File

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