VPP-1543: show map stats crash when not configured. 77/17177/4
authorOle Troan <ot@cisco.com>
Wed, 30 Jan 2019 18:01:49 +0000 (19:01 +0100)
committerDamjan Marion <dmarion@me.com>
Sat, 2 Feb 2019 00:29:02 +0000 (00:29 +0000)
Change-Id: I4c8bc3fb057d57339ce282a31b0bb70ad16dd03e
Signed-off-by: Ole Troan <ot@cisco.com>
src/plugins/map/map.c

index 6b15ee1..47af894 100644 (file)
@@ -1048,7 +1048,7 @@ show_map_stats_command_fn (vlib_main_t * vm, unformat_input_t * input,
   map_main_t *mm = &map_main;
   map_domain_t *d;
   int domains = 0, rules = 0, domaincount = 0, rulecount = 0;
-  if (pool_elts (mm->domains) == 0)
+  if (pool_elts (mm->domains) <= 1)
     {
       vlib_cli_output (vm, "No MAP domains are configured...");
       return 0;