mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
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:
parent
df618f08a6
commit
37d474ff7e
3
xpath.c
3
xpath.c
@ -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);
|
||||
}
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user