stats: remove extra format line 70/39270/2
authorSteven Luong <sluong@cisco.com>
Tue, 25 Jul 2023 19:32:01 +0000 (12:32 -0700)
committerDave Wallace <dwallacelf@gmail.com>
Wed, 26 Jul 2023 01:57:13 +0000 (01:57 +0000)
The extra format line was added for no reason from patch ff27c9f8e.

Type: fix
Fixes: ff27c9f8e

Change-Id: Ib25149cc8a17c29d0c8a0dbc06f0ea12ca4f328c
Signed-off-by: Steven Luong <sluong@cisco.com>
src/vnet/interface/stats.c

index cb0eda0..4f3213a 100644 (file)
@@ -25,7 +25,7 @@ static struct
 static clib_error_t *
 statseg_sw_interface_add_del (vnet_main_t *vnm, u32 sw_if_index, u32 is_add)
 {
-  u8 *name;
+  u8 *name = 0;
 
   if (if_names == 0)
     {
@@ -58,7 +58,6 @@ statseg_sw_interface_add_del (vnet_main_t *vnm, u32 sw_if_index, u32 is_add)
 
       for (u32 index, i = 0; i < ARRAY_LEN (if_counters); i++)
        {
-         name = format (0, "%v", hi_sup->name);
          index = vlib_stats_add_symlink (
            if_counters[i].index, sw_if_index, "/interfaces/%U/%s",
            format_vlib_stats_symlink, name, if_counters[i].name);