From d482336380e08e4edf08e64b94a7388315fc2d68 Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Sun, 23 Dec 2018 08:57:27 -0800 Subject: [PATCH] FIB: adj src assert fix part 2 Change-Id: Ic112180e53a55993b06ba18102202d6ac5854def Signed-off-by: Neale Ranns --- src/vnet/fib/fib_entry_src_adj.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/vnet/fib/fib_entry_src_adj.c b/src/vnet/fib/fib_entry_src_adj.c index 57a802d16c5..14bc1c4390e 100644 --- a/src/vnet/fib/fib_entry_src_adj.c +++ b/src/vnet/fib/fib_entry_src_adj.c @@ -292,8 +292,15 @@ fib_entry_src_adj_deactivate (fib_entry_src_t *src, /* * remove the depednecy on the covering entry */ - cover = fib_entry_get(src->u.adj.fesa_cover); + if (FIB_NODE_INDEX_INVALID == src->u.adj.fesa_cover) + { + /* + * this is the case if the entry is in the non-forwarding trie + */ + return; + } + cover = fib_entry_get(src->u.adj.fesa_cover); fib_entry_cover_untrack(cover, src->u.adj.fesa_sibling); /* -- 2.16.6