mirror of
https://gitlab.labs.nic.cz/labs/bird.git
synced 2024-05-11 16:54:54 +00:00
Some bugs in cleanup after iface down.
This commit is contained in:
@@ -54,7 +54,11 @@ iface_chstate(struct ospf_iface *ifa, u8 state)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if(ifa->dr_sk!=NULL) rfree(ifa->dr_sk);
|
if(ifa->dr_sk!=NULL)
|
||||||
|
{
|
||||||
|
rfree(ifa->dr_sk);
|
||||||
|
ifa->dr_sk=NULL;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -90,6 +94,11 @@ downint(struct ospf_iface *ifa)
|
|||||||
tm_stop(ifa->wait_timer);
|
tm_stop(ifa->wait_timer);
|
||||||
rfree(ifa->wait_timer);
|
rfree(ifa->wait_timer);
|
||||||
}
|
}
|
||||||
|
if(ifa->hello_timer!=NULL)
|
||||||
|
{
|
||||||
|
tm_stop(ifa->hello_timer);
|
||||||
|
rfree(ifa->hello_timer);
|
||||||
|
}
|
||||||
mb_free(ifa);
|
mb_free(ifa);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user