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:
Daniel Veillard 2012-03-27 14:41:37 +08:00
parent 1579499025
commit bdc64d6d5f

View File

@ -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;