From: Florin Coras Date: Wed, 27 Jun 2018 09:05:31 +0000 (-0700) Subject: acl: fix for loop initial declaration X-Git-Tag: v18.07-rc1~88 X-Git-Url: https://gerrit.fd.io/r/gitweb?p=vpp.git;a=commitdiff_plain;h=6e74aa2b9877623c6130d7b2a43b7d8fd0a1b9f8 acl: fix for loop initial declaration Change-Id: Ie899ccbaae4df7cce4ebbba47ed6c3cce5269bdb Signed-off-by: Florin Coras --- diff --git a/src/plugins/acl/hash_lookup.c b/src/plugins/acl/hash_lookup.c index ea07fad7e1b..9a9a1ff67ec 100644 --- a/src/plugins/acl/hash_lookup.c +++ b/src/plugins/acl/hash_lookup.c @@ -265,13 +265,14 @@ tm_assign_mask_type_index(acl_main_t *am, fa_5tuple_t *mask, int is_ip6, u32 lc_ u32 mask_type_index = ~0; u32 for_mask_type_index = ~0; ace_mask_type_entry_t *mte; + int order_index; /* look for existing mask comparable with the one in input */ hash_applied_mask_info_t **hash_applied_mask_info_vec = vec_elt_at_index(am->hash_applied_mask_info_vec_by_lc_index, lc_index); hash_applied_mask_info_t *minfo; if (vec_len(*hash_applied_mask_info_vec) > 0) { - for(int order_index = vec_len((*hash_applied_mask_info_vec)) -1; order_index >= 0; order_index--) { + for(order_index = vec_len((*hash_applied_mask_info_vec)) -1; order_index >= 0; order_index--) { minfo = vec_elt_at_index((*hash_applied_mask_info_vec), order_index); for_mask_type_index = minfo->mask_type_index; mte = vec_elt_at_index(am->ace_mask_type_pool, for_mask_type_index);