Re: [dpdk-dev] [PATCH v1] examples/vhost: fix missing args length check

2020-11-13 Thread Maxime Coquelin
On 11/6/20 4:24 AM, Cheng Jiang wrote: > Add args length check before copying to fix the coverity issue. > > Fixes: 3a04ecb21420 ("examples/vhost: add async vhost args parsing") > Coverity issue: 363741 > > Signed-off-by: Cheng Jiang > --- > examples/vhost/main.c | 6 ++ > 1 file changed

Re: [dpdk-dev] [PATCH v1] examples/vhost: fix missing args length check

2020-11-10 Thread Maxime Coquelin
On 11/6/20 4:24 AM, Cheng Jiang wrote: > Add args length check before copying to fix the coverity issue. > > Fixes: 3a04ecb21420 ("examples/vhost: add async vhost args parsing") > Coverity issue: 363741 > > Signed-off-by: Cheng Jiang > --- > examples/vhost/main.c | 6 ++ > 1 file changed

[dpdk-dev] [PATCH v1] examples/vhost: fix missing args length check

2020-11-05 Thread Cheng Jiang
Add args length check before copying to fix the coverity issue. Fixes: 3a04ecb21420 ("examples/vhost: add async vhost args parsing") Coverity issue: 363741 Signed-off-by: Cheng Jiang --- examples/vhost/main.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/examples/vhost/main.c b/exam