From: Arnaud Giersch Date: Tue, 8 Nov 2011 14:44:38 +0000 (+0100) Subject: Destroy sg_platf_link_cb_list on sg_platf_exit(). X-Git-Tag: exp_20120216~397 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/3c8d6458b202061ce3c1f41344ae66729e437236 Destroy sg_platf_link_cb_list on sg_platf_exit(). --- diff --git a/src/surf/sg_platf.c b/src/surf/sg_platf.c index 4d526eec04..382dd2e5fb 100644 --- a/src/surf/sg_platf.c +++ b/src/surf/sg_platf.c @@ -33,6 +33,7 @@ void sg_platf_init(void) { void sg_platf_exit(void) { xbt_dynar_free(&sg_platf_host_cb_list); xbt_dynar_free(&sg_platf_router_cb_list); + xbt_dynar_free(&sg_platf_link_cb_list); xbt_dynar_free(&sg_platf_postparse_cb_list); xbt_dynar_free(&sg_platf_peer_cb_list); xbt_dynar_free(&sg_platf_ASopen_cb_list);