From afbc0a0405236de4ab8cbac94745e9885db0a198 Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Sat, 21 Dec 2024 16:25:14 +0100 Subject: [PATCH] xpath: Make contextSize and proximityPosition default to 1 In the general case of processing a single node, these values should be set to 1. --- xpath.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xpath.c b/xpath.c index 62440da2..bb36f853 100644 --- a/xpath.c +++ b/xpath.c @@ -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) {