summaryrefslogtreecommitdiffstats
path: root/lib/command_match.c
diff options
context:
space:
mode:
authorpaco <paco@voltanet.io>2018-06-20 19:11:18 +0200
committerpaco <paco@voltanet.io>2018-06-20 19:14:01 +0200
commitfa3016309b33395c02cf10e7e198517c5b81e55a (patch)
tree0de837fc4e142d8b479766f79212d50688bdd3c3 /lib/command_match.c
parentMerge pull request #2498 from pacovn/Coverity_1470098_Logically_dead_code (diff)
downloadfrr-fa3016309b33395c02cf10e7e198517c5b81e55a.tar.xz
frr-fa3016309b33395c02cf10e7e198517c5b81e55a.zip
bgpd, lib: null check (Coverity 1436344, 1451361)
Signed-off-by: F. Aragon <paco@voltanet.io>
Diffstat (limited to 'lib/command_match.c')
-rw-r--r--lib/command_match.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/command_match.c b/lib/command_match.c
index 99ec03e0c..4893ead04 100644
--- a/lib/command_match.c
+++ b/lib/command_match.c
@@ -609,6 +609,7 @@ static struct list *disambiguate(struct list *first, struct list *second,
vector vline, unsigned int n)
{
// doesn't make sense for these to be inequal length
+ assert(first && second);
assert(first->count == second->count);
assert(first->count == vector_active(vline) - n + 1);