From a8f8064d8b1f0a17dd6b914466e17ca1faa3f7c4 Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Tue, 11 Sep 2012 17:59:40 +0000 Subject: [PATCH] Add a missing free(). Refs trac:3292. This commit was SVN r27298. The following Trac tickets were found above: Ticket 3292 --> https://svn.open-mpi.org/trac/ompi/ticket/3292 --- orte/tools/orterun/orterun.c | 1 + 1 file changed, 1 insertion(+) diff --git a/orte/tools/orterun/orterun.c b/orte/tools/orterun/orterun.c index 80a91bfa6a..28d94af38e 100644 --- a/orte/tools/orterun/orterun.c +++ b/orte/tools/orterun/orterun.c @@ -1698,6 +1698,7 @@ static int create_app(int argc, char* argv[], free(param); param = strdup(orterun_globals.prefix); } + free(value); } else if (NULL != orterun_globals.prefix) { param = orterun_globals.prefix; } else if (opal_cmd_line_is_taken(&cmd_line, "prefix")){