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:
parent
554159af58
commit
1cadeaab98
@ -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);
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user