X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fsolr.c;h=7a13940807dcdc75b7aeac73e2e6d8ce3f16871f;hb=2dd448afda333a5db88396d70d539089bf1a572d;hp=51f30748a1f868979df22ad8348339d8f0377766;hpb=9274947f1618751c10d1eb941692397537e79cae;p=yaz-moved-to-github.git diff --git a/src/solr.c b/src/solr.c index 51f3074..7a13940 100644 --- a/src/solr.c +++ b/src/solr.c @@ -202,19 +202,18 @@ int yaz_solr_decode_response(ODR o, Z_HTTP_Response *hres, Z_SRW_PDU **pdup) } else { - /** look for result node */ + /** look for result (required) and facets node (optional) */ + int rc_result = -1; + int rc_facets = 0; for (ptr = root->children; ptr; ptr = ptr->next) { if (ptr->type == XML_ELEMENT_NODE && !strcmp((const char *) ptr->name, "result")) - yaz_solr_decode_result(o, ptr, sr); + rc_result = yaz_solr_decode_result(o, ptr, sr); if (match_xml_node_attribute(ptr, "lst", "name", "facet_counts")) - yaz_solr_decode_facet_counts(o, ptr, sr); - } - if (!ptr) - { - ret = -1; + rc_facets = yaz_solr_decode_facet_counts(o, ptr, sr); } + ret = rc_result + rc_facets; } } if (doc)