From 5628084fecbdcb0325cdd933b17496f27b8a23a5 Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Wed, 29 Aug 2007 01:30:15 +0000 Subject: [PATCH] Fix Coverity CID 463: remove unused variable / dead code. This commit was SVN r15999. --- orte/mca/pls/rsh/pls_rsh_module.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/orte/mca/pls/rsh/pls_rsh_module.c b/orte/mca/pls/rsh/pls_rsh_module.c index 53d3669c09..211b46fb5e 100644 --- a/orte/mca/pls/rsh/pls_rsh_module.c +++ b/orte/mca/pls/rsh/pls_rsh_module.c @@ -375,7 +375,6 @@ int orte_pls_rsh_launch(orte_jobid_t jobid) int node_name_index2; int proc_name_index; int local_exec_index, local_exec_index_end; - char *jobid_string = NULL; char *param; char **argv = NULL; char *prefix_dir; @@ -953,9 +952,6 @@ launch_apps: free(bin_base); } - if (NULL != jobid_string) { - free(jobid_string); /* done with this variable */ - } if (NULL != argv) { opal_argv_free(argv); }