lisp: fix cli locator-set name null termination

Type: fix

Change-Id: I5f550bd6a03f47b829ef99803cb6b9ac86329450
Signed-off-by: Florin Coras <fcoras@cisco.com>
(cherry picked from commit 39771adc1da61943978c18b58b35dedc9dddc4b0)
This commit is contained in:
Florin Coras 2020-07-27 14:42:10 -07:00 committed by Andrew Yourtchenko
parent 554159af58
commit 1cadeaab98
2 changed files with 4 additions and 8 deletions

View File

@ -2083,14 +2083,9 @@ vnet_lisp_add_del_locator_set (vnet_lisp_add_del_locator_set_args_t * a,
ls->name = vec_dup (a->name);
if (!lcm->locator_set_index_by_name)
lcm->locator_set_index_by_name = hash_create_vec (
/* size */
0,
sizeof
(ls->name
[0]),
sizeof
(uword));
lcm->locator_set_index_by_name =
hash_create_vec ( /* size */ 0, sizeof (ls->name[0]),
sizeof (uword));
hash_set_mem (lcm->locator_set_index_by_name, ls->name,
ls_index);

View File

@ -1179,6 +1179,7 @@ lisp_add_del_locator_set_command_fn (vlib_main_t * vm,
}
}
vec_terminate_c_string (locator_set_name);
a->name = locator_set_name;
a->locators = locators;
a->is_add = is_add;