From: Bruce Richardson Date: Fri, 29 May 2015 14:34:14 +0000 (+0100) Subject: ip_frag: fix build with gcc 5.1 X-Git-Tag: spdx-start~9143 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=3d877053c0b88f3fc3636ab871f7afd89626aea8;p=dpdk.git ip_frag: fix build with gcc 5.1 On Fedora 22, with GCC 5.1, errors are reported due to array accesses being potentially out of bounds. This commit fixes this by adding in an extra bounds check to the loop counter. Signed-off-by: Bruce Richardson Acked-by: Neil Horman --- diff --git a/lib/librte_ip_frag/ip_frag_common.h b/lib/librte_ip_frag/ip_frag_common.h index 210f409d60..6b2acee5af 100644 --- a/lib/librte_ip_frag/ip_frag_common.h +++ b/lib/librte_ip_frag/ip_frag_common.h @@ -90,7 +90,7 @@ static inline int ip_frag_key_is_empty(const struct ip_frag_key * key) { uint32_t i; - for (i = 0; i < key->key_len; i++) + for (i = 0; i < RTE_MIN(key->key_len, RTE_DIM(key->src_dst)); i++) if (key->src_dst[i] != 0) return 0; return 1;