From: alegrand Date: Tue, 17 Jun 2008 13:55:27 +0000 (+0000) Subject: Plug a memleak. X-Git-Tag: v3.3~353 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/3c38df10f5b19109fe02620e289a879c26086f19 Plug a memleak. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@5633 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- 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);