From 2fc81904c621445013057044bf86f4aeeaefb17b Mon Sep 17 00:00:00 2001 From: Ralph Dolmans Date: Tue, 7 Jun 2016 08:43:30 +0000 Subject: [PATCH] - Lint fix git-svn-id: file:///svn/unbound/trunk@3765 be551aaa-1e26-0410-a405-d3ace91eadb9 --- services/localzone.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */