From: Klement Sekera Date: Wed, 27 Oct 2021 08:56:38 +0000 (+0200) Subject: policer: fix coverity warning/NULL dereference X-Git-Tag: v22.06-rc0~343 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=ba87563bee400f8ce6d99842a6e455c898cf2c1d;p=vpp.git policer: fix coverity warning/NULL dereference Add a NULL check in case of hash lookup failure to make coverity happy. Type: fix Signed-off-by: Klement Sekera Change-Id: I3cfa5960458d3618f1277ba442b4ca5ca15064ea --- diff --git a/src/vnet/policer/policer.c b/src/vnet/policer/policer.c index 516a029dcee..9eb56414561 100644 --- a/src/vnet/policer/policer.c +++ b/src/vnet/policer/policer.c @@ -737,8 +737,16 @@ show_policer_command_fn (vlib_main_t * vm, templ = pool_elt_at_index (pm->policer_templates, pool_index); vlib_cli_output (vm, "Name \"%s\" %U ", name, format_policer_config, config); - vlib_cli_output (vm, "Template %U", format_policer_instance, templ, - pi[0]); + if (pi) + { + vlib_cli_output (vm, "Template %U", format_policer_instance, templ, + pi[0]); + } + else + { + vlib_cli_output ( + vm, "Cannot print template - policer index hash lookup failed"); + } vlib_cli_output (vm, "-----------"); } }));