mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
Fix a crash with xmllint --path on empty results
If the returned node set is empty, it is possible for the nodetab to be null
This commit is contained in:
parent
1579499025
commit
bdc64d6d5f
@ -2073,7 +2073,7 @@ static void doXPathDump(xmlXPathObjectPtr cur) {
|
||||
#ifdef LIBXML_OUTPUT_ENABLED
|
||||
xmlSaveCtxtPtr ctxt;
|
||||
|
||||
if (cur->nodesetval->nodeNr <= 0) {
|
||||
if ((cur->nodesetval == NULL) || (cur->nodesetval->nodeNr <= 0)) {
|
||||
fprintf(stderr, "XPath set is empty\n");
|
||||
progresult = XMLLINT_ERR_XPATH;
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user