From: schnorr Date: Mon, 7 Feb 2011 13:36:38 +0000 (+0000) Subject: [trace] free the type values X-Git-Tag: v3.6_beta2~346 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/ac1f230c7d64fba88e0938ce18d0772b4721fda6 [trace] free the type values git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@9583 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/instr/instr_paje.c b/src/instr/instr_paje.c index a54c304e98..566f5d3400 100644 --- a/src/instr/instr_paje.c +++ b/src/instr/instr_paje.c @@ -327,6 +327,7 @@ static void recursiveDestroyType (type_t type) xbt_free (type->name); xbt_free (type->id); xbt_free (type->children); + xbt_free (type->values); xbt_free (type); type = NULL; }