Re: [dpdk-dev] [PATCH v3] app/testbbdev: fix sprintf with snprintf or strlcpy

2019-04-22 Thread Thomas Monjalon
09/04/2019 15:05, Pallantla Poornima: > sprintf function is not secure as it doesn't check the length of string. > More secure function snprintf and strlcpy is used. > > Fixes: f714a18885 ("app/testbbdev: add test application for bbdev") > Cc: sta...@dpdk.org > > Signed-off-by: Pallantla Poornima

[dpdk-dev] [PATCH v3] app/testbbdev: fix sprintf with snprintf or strlcpy

2019-04-09 Thread Pallantla Poornima
sprintf function is not secure as it doesn't check the length of string. More secure function snprintf and strlcpy is used. Fixes: f714a18885 ("app/testbbdev: add test application for bbdev") Cc: sta...@dpdk.org Signed-off-by: Pallantla Poornima Acked-by: Amr Mokhtar --- v3: Added Ack. v2: Used