From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.tuxdriver.com (charlotte.tuxdriver.com [70.61.120.58]) by dpdk.org (Postfix) with ESMTP id B82B21396 for ; Fri, 29 May 2015 16:09:56 +0200 (CEST) Received: from hmsreliant.think-freely.org ([2001:470:8:a08:7aac:c0ff:fec2:933b] helo=localhost) by smtp.tuxdriver.com with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.63) (envelope-from ) id 1YyKyt-0004yH-FI; Fri, 29 May 2015 10:09:55 -0400 Date: Fri, 29 May 2015 10:09:45 -0400 From: Neil Horman To: Bruce Richardson Message-ID: <20150529140945.GC29575@hmsreliant.think-freely.org> References: <1432904027-6578-1-git-send-email-bruce.richardson@intel.com> <1432904027-6578-3-git-send-email-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1432904027-6578-3-git-send-email-bruce.richardson@intel.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-Spam-Score: -2.9 (--) X-Spam-Status: No Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH 2/4] ip_frag: fix compile on Fedora 22 (GCC 5.1) X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 May 2015 14:09:57 -0000 On Fri, May 29, 2015 at 01:53:45PM +0100, Bruce Richardson wrote: > 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 > --- > lib/librte_ip_frag/ip_frag_common.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/lib/librte_ip_frag/ip_frag_common.h b/lib/librte_ip_frag/ip_frag_common.h > index 210f409..e37073b 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 < key->key_len && i < RTE_DIM(key->src_dst); i++) > if (key->src_dst[i] != 0) > return 0; > return 1; > -- > 2.4.1 > > RTE_MIN again Neil