From e396b17a7fc3880c04b805f55206ad789be03e75 Mon Sep 17 00:00:00 2001 From: Gilles Gouaillardet Date: Fri, 6 Jan 2017 13:35:58 +0900 Subject: [PATCH] orte/orted: plug a memory leak Signed-off-by: Gilles Gouaillardet --- orte/orted/orted_main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/orte/orted/orted_main.c b/orte/orted/orted_main.c index c8a2907c16..93f7c04393 100644 --- a/orte/orted/orted_main.c +++ b/orte/orted/orted_main.c @@ -17,7 +17,7 @@ * et Automatique. All rights reserved. * Copyright (c) 2010 Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2013-2016 Intel, Inc. All rights reserved. - * Copyright (c) 2015-2016 Research Organization for Information Science + * Copyright (c) 2015-2017 Research Organization for Information Science * and Technology (RIST). All rights reserved. * $COPYRIGHT$ * @@ -879,6 +879,7 @@ int orte_daemon(int argc, char *argv[]) /* cleanup and leave */ orte_finalize(); + opal_finalize_util(); if (orte_debug_flag) { fprintf(stderr, "exiting with status %d\n", orte_exit_status);