mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-03 18:37:48 +01:00
OSPF: Fix reading from freed memory
Thanks to Pavel Tvrdik for noticing it.
This commit is contained in:
parent
62a4ad3657
commit
a459f4df16
@ -108,6 +108,7 @@ ospf_neigh_down(struct ospf_neighbor *n)
|
||||
{
|
||||
struct ospf_iface *ifa = n->ifa;
|
||||
struct ospf_proto *p = ifa->oa->po;
|
||||
u32 rid = n->rid;
|
||||
|
||||
if ((ifa->type == OSPF_IT_NBMA) || (ifa->type == OSPF_IT_PTMP))
|
||||
{
|
||||
@ -121,7 +122,7 @@ ospf_neigh_down(struct ospf_neighbor *n)
|
||||
rem_node(NODE n);
|
||||
rfree(n->pool);
|
||||
|
||||
OSPF_TRACE(D_EVENTS, "Neighbor %R on %s removed", n->rid, ifa->ifname);
|
||||
OSPF_TRACE(D_EVENTS, "Neighbor %R on %s removed", rid, ifa->ifname);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user