summaryrefslogtreecommitdiffstats
path: root/bgpd/bgp_advertise.c
diff options
context:
space:
mode:
authorPaul Jakma <paul.jakma@sun.com>2006-08-27 08:57:47 +0200
committerPaul Jakma <paul.jakma@sun.com>2006-08-27 08:57:47 +0200
commit9f906c7c562bd62043c77a79d84967deea9fe45e (patch)
tree84fc5f54c9effcb75ec8ea139228b5f0384075f1 /bgpd/bgp_advertise.c
parent[tests] update heavywq for workqueue api changes (diff)
downloadfrr-9f906c7c562bd62043c77a79d84967deea9fe45e.tar.xz
frr-9f906c7c562bd62043c77a79d84967deea9fe45e.zip
[bgpd] fix mtype in XFREE and NULL out freed pointer
2006-08-27 Paul Jakma <paul.jakma@sun.com> * bgp_advertise.c: (bgp_sync_delete) fix mtype in XFREE. NULL out peer->hash after free, to be sure.
Diffstat (limited to 'bgpd/bgp_advertise.c')
-rw-r--r--bgpd/bgp_advertise.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/bgpd/bgp_advertise.c b/bgpd/bgp_advertise.c
index 3a49ca852..3a40b1a72 100644
--- a/bgpd/bgp_advertise.c
+++ b/bgpd/bgp_advertise.c
@@ -403,10 +403,11 @@ bgp_sync_delete (struct peer *peer)
for (safi = SAFI_UNICAST; safi < SAFI_MAX; safi++)
{
if (peer->sync[afi][safi])
- XFREE (MTYPE_TMP, peer->sync[afi][safi]);
+ XFREE (MTYPE_BGP_SYNCHRONISE, peer->sync[afi][safi]);
peer->sync[afi][safi] = NULL;
if (peer->hash[afi][safi])
hash_free (peer->hash[afi][safi]);
+ peer->hash[afi][safi] = NULL;
}
}