Re: [dpdk-dev] [PATCH v7] drivers/net: fix possible overflow using strlcat

2019-03-20 Thread Ferruh Yigit
On 3/18/2019 12:41 PM, 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 and pctype info") > C

[dpdk-dev] [PATCH v7] drivers/net: fix possible overflow using strlcat

2019-03-18 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") Cc: sta...@dpdk.org Signed-off-by: Chaitanya Babu Talluri --- v7