Re: [dpdk-dev] [PATCH v3] net/ring: fix unchecked return value

2020-10-13 Thread Ferruh Yigit
On 10/13/2020 2:07 PM, Kevin Laatz wrote: Add a check for the return value of the sscanf call in parse_internal_args(), returning an error if we don't get the expected result. Coverity issue: 362049 Fixes: 96cb19521147 ("net/ring: use EAL APIs in PMD specific API") Cc: sta...@dpdk.org Signed-of

[dpdk-dev] [PATCH v3] net/ring: fix unchecked return value

2020-10-13 Thread Kevin Laatz
Add a check for the return value of the sscanf call in parse_internal_args(), returning an error if we don't get the expected result. Coverity issue: 362049 Fixes: 96cb19521147 ("net/ring: use EAL APIs in PMD specific API") Cc: sta...@dpdk.org Signed-off-by: Kevin Laatz --- v2: added consumed c