Re: [dpdk-dev] [PATCH] net/softnic: fix sprintf with snprintf

2019-03-01 Thread Ferruh Yigit
On 2/4/2019 7:23 AM, Pallantla Poornima wrote: > sprintf function is not secure as it doesn't check the length of string. > More secure function snprintf is used. > > Fixes: daabf2fb94 ("net/softnic: map flow action to table action") > Cc: sta...@dpdk.org > > Signed-off-by: Pallantla Poornima R

[dpdk-dev] [PATCH] net/softnic: fix sprintf with snprintf

2019-02-03 Thread Pallantla Poornima
sprintf function is not secure as it doesn't check the length of string. More secure function snprintf is used. Fixes: daabf2fb94 ("net/softnic: map flow action to table action") Cc: sta...@dpdk.org Signed-off-by: Pallantla Poornima --- drivers/net/softnic/rte_eth_softnic_flow.c | 5 +++-- 1 fi