bonding: fix non-null terminated vector

Type: fix

Change-Id: Iea7d73a304236b525b95bdad3bfdb41e711f8cdb
Signed-off-by: Benoît Ganne <bganne@cisco.com>
(cherry picked from commit a03c7d5b9280e1cd5d89cb7cc15bd05b56062c95)
This commit is contained in:
Benoît Ganne 2019-11-06 14:36:38 +01:00 committed by Andrew Yourtchenko
parent 4fc160d7dd
commit 7fcc906203

View File

@ -582,8 +582,8 @@ bond_enslave (vlib_main_t * vm, bond_enslave_args_t * args)
}
if (bif->mode == BOND_MODE_LACP)
{
u8 *name = format (0, "/if/lacp/%u/%u/state", bif->sw_if_index,
args->slave);
u8 *name = format (0, "/if/lacp/%u/%u/state%c", bif->sw_if_index,
args->slave, 0);
vec_validate (bm->stats, bif->sw_if_index);
vec_validate (bm->stats[bif->sw_if_index], args->slave);