From: Ralph Dolmans Date: Tue, 7 Jun 2016 08:43:30 +0000 (+0000) Subject: - Lint fix X-Git-Tag: release-1.5.10~99 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2fc81904c621445013057044bf86f4aeeaefb17b;p=thirdparty%2Funbound.git - Lint fix git-svn-id: file:///svn/unbound/trunk@3765 be551aaa-1e26-0410-a405-d3ace91eadb9 --- diff --git a/services/localzone.c b/services/localzone.c index 1f8c63bce..88f9c7a32 100644 --- a/services/localzone.c +++ b/services/localzone.c @@ -1026,6 +1026,7 @@ local_zones_tags_lookup(struct local_zones* zones, rbnode_t* res = NULL; struct local_zone *result; struct local_zone key; + int m; key.node.key = &key; key.dclass = dclass; key.name = name; @@ -1034,7 +1035,6 @@ local_zones_tags_lookup(struct local_zones* zones, rbtree_find_less_equal(&zones->ztree, &key, &res); result = (struct local_zone*)res; /* exact or smaller element (or no element) */ - int m; if(!result || result->dclass != dclass) return NULL; /* count number of labels matched */