summaryrefslogtreecommitdiffstats
path: root/hicn-plugin/src/route.c
diff options
context:
space:
mode:
authorAlberto Compagno <acompagn+fdio@cisco.com>2020-01-21 15:38:45 +0000
committerGerrit Code Review <gerrit@fd.io>2020-01-21 15:38:45 +0000
commit50bedb707155de675121a556a8b129280440cdf5 (patch)
treea21b90b2a3178429330ff461a4ca2ae2d8bcfe9b /hicn-plugin/src/route.c
parent43980f3096655df2b2ecec50e700dd6989b0e0d6 (diff)
parentf2de2bfea184034f675ab4a521e7deaae58c5ff8 (diff)
Merge "[HICN-477] Fixed strategy get ctx that could lead to a segfault"
Diffstat (limited to 'hicn-plugin/src/route.c')
-rw-r--r--hicn-plugin/src/route.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hicn-plugin/src/route.c b/hicn-plugin/src/route.c
index 321f11940..e5758eed4 100644
--- a/hicn-plugin/src/route.c
+++ b/hicn-plugin/src/route.c
@@ -320,7 +320,7 @@ hicn_route_set_strategy (fib_prefix_t * prefix, u8 strategy_id)
new_dpo_vft = hicn_dpo_get_vft_from_id (strategy_id);
- if (new_dpo_vft == NULL)
+ if (new_dpo_vft == NULL || old_hicn_dpo_ctx == NULL)
return HICN_ERROR_STRATEGY_NOT_FOUND;
/* Create a new dpo for the new strategy */