From 600eb695b1a273f8b3fd4f2c524d8eeef25483aa Mon Sep 17 00:00:00 2001 From: Maria Matejka Date: Mon, 31 Aug 2020 15:41:39 +0200 Subject: [PATCH] OSPF: Fixed a debug assert --- proto/ospf/topology.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/ospf/topology.c b/proto/ospf/topology.c index f59db49d..f1f6570d 100644 --- a/proto/ospf/topology.c +++ b/proto/ospf/topology.c @@ -335,7 +335,7 @@ ospf_originate_lsa(struct ospf_proto *p, struct ospf_new_lsa *lsa) * equal to 0 while sizeof(struct ospf_lsa_header) is non-zero. * Therefore memcmp() is never executed with NULL here. * */ - ASSUME((en->lsa.length == 0) == (en->lsa_body == NULL)); + ASSUME(en->lsa.age >= LSA_MAXAGE || (en->lsa.length == 0) == (en->lsa_body == NULL)); /* Ignore the the new LSA if is the same as the current one */ if ((en->lsa.age < LSA_MAXAGE) &&