diff --git a/catalog.c b/catalog.c index 369595a3..880f9100 100644 --- a/catalog.c +++ b/catalog.c @@ -2171,7 +2171,6 @@ xmlParseSGMLCatalogPubid(const xmlChar *cur, xmlChar **id) { int len = 0; int size = 50; xmlChar stop; - int count = 0; *id = NULL; @@ -2205,7 +2204,6 @@ xmlParseSGMLCatalogPubid(const xmlChar *cur, xmlChar **id) { buf = tmp; } buf[len++] = *cur; - count++; NEXT; } buf[len] = 0; diff --git a/dict.c b/dict.c index 5c9ca719..05378022 100644 --- a/dict.c +++ b/dict.c @@ -1007,7 +1007,7 @@ xmlDictLookup(xmlDictPtr dict, const xmlChar *name, int len) { */ const xmlChar * xmlDictExists(xmlDictPtr dict, const xmlChar *name, int len) { - unsigned long key, okey, nbi = 0; + unsigned long key, okey; xmlDictEntryPtr insert; unsigned int l; @@ -1042,7 +1042,6 @@ xmlDictExists(xmlDictPtr dict, const xmlChar *name, int len) { (!xmlStrncmp(insert->name, name, l))) return(insert->name); #endif - nbi++; } #ifdef __GNUC__ if ((insert->okey == okey) && (insert->len == l)) { @@ -1084,7 +1083,6 @@ xmlDictExists(xmlDictPtr dict, const xmlChar *name, int len) { (!xmlStrncmp(tmp->name, name, l))) return(tmp->name); #endif - nbi++; } #ifdef __GNUC__ if ((tmp->okey == skey) && (tmp->len == l)) { diff --git a/xmlschemas.c b/xmlschemas.c index de6ea2b0..2457c074 100644 --- a/xmlschemas.c +++ b/xmlschemas.c @@ -21875,7 +21875,6 @@ xmlSchemaAssembleByXSI(xmlSchemaValidCtxtPtr vctxt) { const xmlChar *cur, *end; const xmlChar *nsname = NULL, *location; - int count = 0; int ret = 0; xmlSchemaAttrInfoPtr iattr; @@ -21910,7 +21909,7 @@ xmlSchemaAssembleByXSI(xmlSchemaValidCtxtPtr vctxt) end++; if (end == cur) break; - count++; /* TODO: Don't use the schema's dict. */ + /* TODO: Don't use the schema's dict. */ nsname = xmlDictLookup(vctxt->schema->dict, cur, end - cur); cur = end; } @@ -21937,7 +21936,7 @@ xmlSchemaAssembleByXSI(xmlSchemaValidCtxtPtr vctxt) } break; } - count++; /* TODO: Don't use the schema's dict. */ + /* TODO: Don't use the schema's dict. */ location = xmlDictLookup(vctxt->schema->dict, cur, end - cur); cur = end; ret = xmlSchemaAssembleByLocation(vctxt, vctxt->schema, diff --git a/xpath.c b/xpath.c index 72c9c127..b1342532 100644 --- a/xpath.c +++ b/xpath.c @@ -13644,8 +13644,6 @@ xmlXPathRunStreamEval(xmlXPathContextPtr ctxt, xmlPatternPtr comp, xmlNodePtr cur = NULL, limit = NULL; xmlStreamCtxtPtr patstream = NULL; - int nb_nodes = 0; - if ((ctxt == NULL) || (comp == NULL)) return(-1); max_depth = xmlPatternMaxDepth(comp); @@ -13762,8 +13760,6 @@ next_node: ctxt->opCount++; } - nb_nodes++; - switch (cur->type) { case XML_ELEMENT_NODE: case XML_TEXT_NODE: @@ -13855,11 +13851,6 @@ scan_children: done: -#if 0 - printf("stream eval: checked %d nodes selected %d\n", - nb_nodes, retObj->nodesetval->nodeNr); -#endif - if (patstream) xmlFreeStreamCtxt(patstream); return(0);