> -----Original Message----- > From: Zhang, Roy Fan > Sent: Monday, April 16, 2018 11:58 AM > To: dev@dpdk.org > Cc: Dumitrescu, Cristian <cristian.dumitre...@intel.com>; Singh, Jasvinder > <jasvinder.si...@intel.com> > Subject: [PATCH] examples/ip_pipeline: fix logically dead node > > Coverity issue: 272567 > Fixes: d75c371e9b46 ("examples/ip_pipeline: add pipeline object") > > Signed-off-by: Fan Zhang <roy.fan.zh...@intel.com> > --- > examples/ip_pipeline/cli.c | 6 ------ > 1 file changed, 6 deletions(-) > > diff --git a/examples/ip_pipeline/cli.c b/examples/ip_pipeline/cli.c index > 199a31ff8..6c07ca223 100644 > --- a/examples/ip_pipeline/cli.c > +++ b/examples/ip_pipeline/cli.c > @@ -1890,12 +1890,6 @@ cmd_pipeline_table(char **tokens, > > t0 += 6; > } else if (strcmp(tokens[t0], "stub") == 0) { > - if (n_tokens < t0 + 1) { > - snprintf(out, out_size, MSG_ARG_MISMATCH, > - "pipeline table stub"); > - return; > - } > - > p.match_type = TABLE_STUB; > > t0 += 1; > -- > 2.13.6
Reviewed-by: Jasvinder Singh <jasvindeer.si...@intel.com>