Merge pull request #8987 from mobash-rasool/ospfv3-bug-fixes

ospf6d: Fix crash in ospf6_asbr_lsa_remove at ospf6d/ospf6_asbr.c:696
This commit is contained in:
Igor Ryzhov 2021-07-07 17:28:14 +03:00 committed by GitHub
commit 5ee7655ee9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -690,7 +690,7 @@ void ospf6_asbr_lsa_remove(struct ospf6_lsa *lsa,
if (ospf6_check_and_set_router_abr(ospf6))
oa = ospf6->backbone;
else
oa = listgetdata(listhead(ospf6->area_list));
oa = listnode_head(ospf6->area_list);
}
if (oa == NULL) {