[ospfd] fix rare leak of struct connected, in an error path.

2006-01-10 Juris Kalnins <juris@mt.lv>

	* ospf_zebra.c: (ospf_interface_address_delete) fix rare leak of
	  struct connected in an error case.
This commit is contained in:
paul 2006-01-10 22:11:54 +00:00
parent c42c177de3
commit 98429f6d07
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-01-10 Juris Kalnins <juris@mt.lv>
* ospf_zebra.c: (ospf_interface_address_delete) fix rare leak of
struct connected in an error case.
2006-01-10 Paul Jakma <paul.jakma@sun.com>
* ospfd.c: (ospf_network_run) checking to see if router-id

View File

@ -289,7 +289,10 @@ ospf_interface_address_delete (int command, struct zclient *zclient,
rn = route_node_lookup (IF_OIFS (ifp), &p);
if (!rn)
return 0;
{
connected_free (c);
return 0;
}
assert (rn->info);
oi = rn->info;