Re: [dpdk-dev] [PATCH v2] app/test: fix possible overflow using strlcat

2019-03-22 Thread Akhil Goyal
On 3/22/2019 8:01 PM, Akhil Goyal wrote: > > On 3/18/2019 6:06 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: 6f4eec2565 ("test/crypto: enhance scheduler unit te

Re: [dpdk-dev] [PATCH v2] app/test: fix possible overflow using strlcat

2019-03-22 Thread Akhil Goyal
On 3/18/2019 6:06 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: 6f4eec2565 ("test/crypto: enhance scheduler unit tests") > Cc: sta...@dpdk.org > > Signed-off-by: Ch

[dpdk-dev] [PATCH v2] app/test: 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: 6f4eec2565 ("test/crypto: enhance scheduler unit tests") Cc: sta...@dpdk.org Signed-off-by: Chaitanya Babu Talluri --- v2: Updated title. --- app/test/test_cr