From 9dbc2a5652d2692d1383f13782ab6099d24cfad2 Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Tue, 8 Oct 2013 17:05:32 +0200 Subject: [PATCH 1/1] Caught another leak. --- src/xbt/parmap.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/xbt/parmap.c b/src/xbt/parmap.c index 7120fae5ca..ad335a0796 100644 --- a/src/xbt/parmap.c +++ b/src/xbt/parmap.c @@ -326,6 +326,7 @@ static void *xbt_parmap_worker_main(void *arg) /* We are destroying the parmap */ } else { + SIMIX_context_free(context); xbt_free(data); parmap->worker_signal_f(parmap); return NULL; -- 2.20.1