mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-07-31 07:59:57 +00:00
ospfd: Fix some new SA issues found by coverity
Fix a || && mixup. Add an assert for area to show we expect it to be non-null going forward. When memory is allocated if it fails we abort then no need to check for null. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
This commit is contained in:
parent
cf29dab3b5
commit
9b50aa1fd3
@ -175,7 +175,7 @@ void ospf_ext_term(void)
|
||||
{
|
||||
|
||||
if ((OspfEXT.scope != OSPF_OPAQUE_AREA_LSA)
|
||||
|| (OspfEXT.scope != OSPF_OPAQUE_AS_LSA))
|
||||
&& (OspfEXT.scope != OSPF_OPAQUE_AS_LSA))
|
||||
zlog_warn(
|
||||
"EXT: Unable to unregister Extended Prefix "
|
||||
"Opaque LSA functions: Wrong scope!");
|
||||
|
@ -563,6 +563,7 @@ int ospf_flood_through_area(struct ospf_area *area, struct ospf_neighbor *inbr,
|
||||
struct ospf_interface *oi;
|
||||
int lsa_ack_flag = 0;
|
||||
|
||||
assert(area);
|
||||
/* All other types are specific to a single area (Area A). The
|
||||
eligible interfaces are all those interfaces attaching to the
|
||||
Area A. If Area A is the backbone, this includes all the virtual
|
||||
|
@ -149,14 +149,6 @@ static struct sr_node *sr_node_new(struct in_addr *rid)
|
||||
new->ext_link->del = del_sr_link;
|
||||
new->ext_prefix->del = del_sr_pref;
|
||||
|
||||
/* Check if list are correctly created */
|
||||
if (new->ext_link == NULL || new->ext_prefix == NULL) {
|
||||
list_delete_original(new->ext_link);
|
||||
list_delete_original(new->ext_prefix);
|
||||
XFREE(MTYPE_OSPF_SR_PARAMS, new);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
IPV4_ADDR_COPY(&new->adv_router, rid);
|
||||
new->neighbor = NULL;
|
||||
new->instance = 0;
|
||||
@ -440,7 +432,7 @@ static struct ospf_path *get_nexthop_by_addr(struct ospf *top,
|
||||
struct route_node *rn;
|
||||
|
||||
/* Sanity Check */
|
||||
if ((top == NULL) && (top->new_table))
|
||||
if (top == NULL)
|
||||
return NULL;
|
||||
|
||||
if (IS_DEBUG_OSPF_SR)
|
||||
|
Loading…
Reference in New Issue
Block a user