On Wed, 01 Feb 2023 18:28:44 +0100
Thomas Monjalon <tho...@monjalon.net> wrote:

> 10/01/2023 15:56, Mohammad Iqbal Ahmad:
> > This patch fixes (Logically dead code) coverity issue.
> > This patch also fixes (Uninitialized scalar variable) coverity issue.
> > 
> > Coverity issue: 381687
> > Coverity issue: 381686
> > Fixes: 6a094e328598 ("examples/l3fwd: implement FIB lookup method")
> > 
> > Signed-off-by: Mohammad Iqbal Ahmad <mah...@marvell.com>  
> 
> It seems you removed "if (nh != FIB_DEFAULT_HOP)"
> 
> Please could you explain what was the issue
> inside the commit message.
> It could help to find a better title as well.

Coverity is spotting that the same condition is evaluated first
in the if() then in the conditional expression. So yes it is a bug.

Would prefer the title of
   examples/l3fwd: fix duplicate expression for default nexthop

Don't think the default nexthop was ever tested. If it was then
hops[i] would have never been updated. Probably would just get previous
value so it worked.

Acked-by: Stephen Hemminger <step...@networkplumber.org>

Reply via email to