From 93e73841f9ec3739dec209365979e2badec0740f Mon Sep 17 00:00:00 2001 From: Gilles Gouaillardet Date: Tue, 23 Aug 2016 09:46:55 +0900 Subject: [PATCH] ess/singleton: push all PMIX_* environment variables, regardless how many there are --- orte/mca/ess/singleton/ess_singleton_module.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/orte/mca/ess/singleton/ess_singleton_module.c b/orte/mca/ess/singleton/ess_singleton_module.c index 22001e3372..73d45f96af 100644 --- a/orte/mca/ess/singleton/ess_singleton_module.c +++ b/orte/mca/ess/singleton/ess_singleton_module.c @@ -635,10 +635,6 @@ static int fork_hnp(void) /* split the pmix_uri into its parts */ argv = opal_argv_split(cptr, ','); count = opal_argv_count(argv); - if (4 > count) { - opal_argv_free(argv); - return ORTE_ERR_BAD_PARAM; - } /* push each piece into the environment */ for (i=0; i < count; i++) { pmixenvars[i] = strdup(argv[i]);