Re: [dpdk-dev] [PATCH v3] drivers: fix to replace strcat with strlcat

2019-02-27 Thread Pattan, Reshma
> -Original Message- > From: Chaitanya Babu, TalluriX > Sent: Wednesday, February 27, 2019 6:03 AM > To: dev@dpdk.org > diff --git a/drivers/net/i40e/i40e_ethdev.c b/drivers/net/i40e/i40e_ethdev.c > index dca61f03a..fac4e943f 100644 > --- a/drivers/net/i40e/i40e_ethdev.c > +++ b/drivers/

Re: [dpdk-dev] [PATCH v3] drivers: fix to replace strcat with strlcat

2019-02-27 Thread Bruce Richardson
On Wed, Feb 27, 2019 at 06:02:51AM +, Chaitanya Babu Talluri wrote: > Strcat does not check the destination length and there might be > chances of string overflow so instead of strcat, strlcat is used. > > Fixes: 540a211084 ("bnx2x: driver core") > Fixes: e163c18a15 ("net/i40e: update ptype an

[dpdk-dev] [PATCH v3] drivers: fix to replace strcat with strlcat

2019-02-26 Thread Chaitanya Babu Talluri
Strcat does not check the destination length and there might be chances of string overflow so instead of strcat, strlcat is used. Fixes: 540a211084 ("bnx2x: driver core") Fixes: e163c18a15 ("net/i40e: update ptype and pctype info") Fixes: ef28aa96e5 ("net/nfp: support multiprocess") Fixes: 6f4eec2