mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-07-27 03:33:43 +00:00
Merge pull request #2278 from donaldsharp/uninited_variable
bgpd: Fix use of uninitialized variable
This commit is contained in:
commit
39f7319dac
@ -1193,7 +1193,7 @@ void bgp_zebra_announce(struct bgp_node *rn, struct prefix *p,
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
if (bgp_debug_zebra(p))
|
if (bgp_debug_zebra(p))
|
||||||
prefix2str(&api.prefix, buf_prefix, sizeof(buf_prefix));
|
prefix2str(p, buf_prefix, sizeof(buf_prefix));
|
||||||
|
|
||||||
if (safi == SAFI_FLOWSPEC)
|
if (safi == SAFI_FLOWSPEC)
|
||||||
return bgp_pbr_update_entry(bgp, &rn->p,
|
return bgp_pbr_update_entry(bgp, &rn->p,
|
||||||
|
Loading…
Reference in New Issue
Block a user