xpath: Fix return of empty node-set in xmlXPathNodeCollectAndTest

Don't return NULL node-sets. Ultimately, we should make sure that
obj->nodesetval is always non-NULL even for empty node-sets.

See #663.
This commit is contained in:
Nick Wellnhofer 2024-01-17 14:19:42 +01:00
parent df618f08a6
commit 37d474ff7e

View File

@ -10953,8 +10953,7 @@ xmlXPathNodeCollectAndTest(xmlXPathParserContextPtr ctxt,
}
contextSeq = obj->nodesetval;
if ((contextSeq == NULL) || (contextSeq->nodeNr <= 0)) {
xmlXPathReleaseObject(xpctxt, obj);
valuePush(ctxt, xmlXPathCacheWrapNodeSet(ctxt, NULL));
valuePush(ctxt, obj);
return(0);
}
/*