From 0ee5d56ab10eaac9ce3af8bfe8788b03a3a943b2 Mon Sep 17 00:00:00 2001 From: Gilles Gouaillardet Date: Fri, 6 Jan 2017 13:22:37 +0900 Subject: [PATCH] grpcomm/direct: plug a memory leak in barrier_release() Signed-off-by: Gilles Gouaillardet --- orte/mca/grpcomm/direct/grpcomm_direct.c | 1 + 1 file changed, 1 insertion(+) diff --git a/orte/mca/grpcomm/direct/grpcomm_direct.c b/orte/mca/grpcomm/direct/grpcomm_direct.c index 6012cfbb32..0e44a26a98 100644 --- a/orte/mca/grpcomm/direct/grpcomm_direct.c +++ b/orte/mca/grpcomm/direct/grpcomm_direct.c @@ -516,5 +516,6 @@ static void barrier_release(int status, orte_process_name_t* sender, } opal_list_remove_item(&orte_grpcomm_base.ongoing, &coll->super); OBJ_RELEASE(coll); + OBJ_RELEASE(sig); }