summaryrefslogtreecommitdiffstats
path: root/hicn-plugin/src/mapme_eventmgr.c
diff options
context:
space:
mode:
authorAlberto Compagno <acompagn+fdio@cisco.com>2020-01-14 12:02:48 +0100
committerAlberto Compagno <acompagn+fdio@cisco.com>2020-01-15 09:13:11 +0100
commitf2de2bfea184034f675ab4a521e7deaae58c5ff8 (patch)
treecff17c97eba04055f659aa59d0940b6f31cce5f9 /hicn-plugin/src/mapme_eventmgr.c
parentdef98b1a2af5292519b18893133e419e940a850b (diff)
[HICN-477] Fixed strategy get ctx that could lead to a segfault
Change-Id: Ic0d4f5a6919cb68255e788ac288d17492a6570a5 Signed-off-by: Alberto Compagno <acompagn+fdio@cisco.com>
Diffstat (limited to 'hicn-plugin/src/mapme_eventmgr.c')
-rw-r--r--hicn-plugin/src/mapme_eventmgr.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/hicn-plugin/src/mapme_eventmgr.c b/hicn-plugin/src/mapme_eventmgr.c
index 93168d059..ef73f9550 100644
--- a/hicn-plugin/src/mapme_eventmgr.c
+++ b/hicn-plugin/src/mapme_eventmgr.c
@@ -283,13 +283,14 @@ hicn_mapme_send_updates (vlib_main_t * vm, hicn_prefix_t * prefix,
{
const hicn_dpo_vft_t *dpo_vft = hicn_dpo_get_vft (dpo.dpoi_type);
hicn_mapme_tfib_t *tfib = TFIB (dpo_vft->hicn_dpo_get_ctx (dpo.dpoi_index));
- u8 tfib_last_idx = HICN_PARAM_FIB_ENTRY_NHOPS_MAX - tfib->tfib_entry_count;
if (!tfib)
{
DEBUG ("NULL TFIB entry id=%d", dpo.dpoi_index);
return;
}
+ u8 tfib_last_idx = HICN_PARAM_FIB_ENTRY_NHOPS_MAX - tfib->tfib_entry_count;
+
mapme_params_t params = {
.protocol = ip46_address_is_ip4 (&prefix->name)
? IPPROTO_IP : IPPROTO_IPV6,