forked from Mirror/frr
bgpd: Fix SA issue with uninited ifindex value
The rearrangement of where the decision point of filling in the aggregate information, must have allowed SA to find a path of code where we may use ifindex uninitialized. While I don't think this is possible to happen, make this issue go away. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
This commit is contained in:
parent
5cc347c4b9
commit
f220da9968
|
@ -1316,7 +1316,7 @@ void bgp_zebra_announce(struct bgp_node *rn, struct prefix *p,
|
|||
&mpinfo_cp->attr->nexthop,
|
||||
mpinfo_cp->attr, is_evpn, api_nh);
|
||||
} else {
|
||||
ifindex_t ifindex;
|
||||
ifindex_t ifindex = IFINDEX_INTERNAL;
|
||||
struct in6_addr *nexthop;
|
||||
|
||||
if (bgp->table_map[afi][safi].name) {
|
||||
|
|
Loading…
Reference in a new issue