X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d4acfcad1ce01a174dea2d855443fa2e82ff5d5c..a30eb8d63c2291f6b50b935cecf16139b372f9f2:/src/gras/DataDesc/cbps.c diff --git a/src/gras/DataDesc/cbps.c b/src/gras/DataDesc/cbps.c index 952931e007..d4ac84b0b6 100644 --- a/src/gras/DataDesc/cbps.c +++ b/src/gras/DataDesc/cbps.c @@ -99,7 +99,7 @@ gras_cbps_v_push(gras_cbps_t ps, DEBUG1("Create a new variable stack for '%s' into the space",name); varstack = xbt_dynar_new(sizeof (gras_cbps_elm_t *), NULL); xbt_dict_set(ps->space, varname, (void **)varstack, NULL); - xbt_ex_free(e); + xbt_ex_free(&e); /* leaking, you think? only if you do not close all the openned blocks ;)*/ } @@ -137,7 +137,7 @@ gras_cbps_v_pop (gras_cbps_t ps, if (e.category != mismatch_error) RETHROW; - xbt_ex_free(e); + xbt_ex_free(&e); THROW1(not_found_error,1,"Asked to pop the non-existant %s", name); } xbt_dynar_pop(varstack, &var);