From 3c38df10f5b19109fe02620e289a879c26086f19 Mon Sep 17 00:00:00 2001 From: alegrand Date: Tue, 17 Jun 2008 13:55:27 +0000 Subject: [PATCH 1/1] Plug a memleak. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@5633 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- src/surf/surfxml_parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/surf/surfxml_parse.c b/src/surf/surfxml_parse.c index 56325f5382..6126fd3d63 100644 --- a/src/surf/surfxml_parse.c +++ b/src/surf/surfxml_parse.c @@ -259,7 +259,6 @@ void ETag_surfxml_platform(void) surfxml_call_cb_functions(ETag_surfxml_platform_cb_list); xbt_dict_free(&random_data_list); - xbt_dict_free(&set_list); } void STag_surfxml_host(void) @@ -1012,6 +1011,7 @@ static void convert_route_multi_to_routes(void) } } } + xbt_dynar_free(&keys); } pop_surfxml_bufferstack(0); xbt_dict_free(&route_multi_table); -- 2.20.1