Re: [dpdk-dev] [PATCH] librte_flow_classify: fix out-of-bounds access

2019-07-30 Thread Aaron Conole
David Marchand writes: > On Wed, Jul 10, 2019 at 11:49 PM Thomas Monjalon wrote: >> >> 09/07/2019 13:09, Bernard Iremonger: >> > This patch fixes the out-of-bounds coverity issue by removing the >> > offending line of code at line 107 in rte_flow_classify_parse.c >> > which is never executed. >>

Re: [dpdk-dev] [PATCH] librte_flow_classify: fix out-of-bounds access

2019-07-29 Thread David Marchand
On Wed, Jul 10, 2019 at 11:49 PM Thomas Monjalon wrote: > > 09/07/2019 13:09, Bernard Iremonger: > > This patch fixes the out-of-bounds coverity issue by removing the > > offending line of code at line 107 in rte_flow_classify_parse.c > > which is never executed. > > > > Coverity issue: 343454 > >

Re: [dpdk-dev] [PATCH] librte_flow_classify: fix out-of-bounds access

2019-07-10 Thread Thomas Monjalon
09/07/2019 13:09, Bernard Iremonger: > This patch fixes the out-of-bounds coverity issue by removing the > offending line of code at line 107 in rte_flow_classify_parse.c > which is never executed. > > Coverity issue: 343454 > > Fixes: be41ac2a330f ("flow_classify: introduce flow classify library

[dpdk-dev] [PATCH] librte_flow_classify: fix out-of-bounds access

2019-07-09 Thread Bernard Iremonger
This patch fixes the out-of-bounds coverity issue by removing the offending line of code at line 107 in rte_flow_classify_parse.c which is never executed. Coverity issue: 343454 Fixes: be41ac2a330f ("flow_classify: introduce flow classify library") Cc: sta...@dpdk.org Signed-off-by: Bernard Iremo