From f08cce16dbeaa3e31e18a9ed999fa45a34cb3994 Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Wed, 29 Aug 2007 01:21:17 +0000 Subject: [PATCH] Fix Coverity CID 468: remove unused variable. This commit was SVN r15996. --- ompi/mpi/c/intercomm_merge.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/ompi/mpi/c/intercomm_merge.c b/ompi/mpi/c/intercomm_merge.c index 32ce091baa..3599cc3890 100644 --- a/ompi/mpi/c/intercomm_merge.c +++ b/ompi/mpi/c/intercomm_merge.c @@ -48,7 +48,7 @@ int MPI_Intercomm_merge(MPI_Comm intercomm, int high, int total_size; int rc=MPI_SUCCESS; int thigh = high; - ompi_proc_t **l_proc_list=NULL , **r_proc_list=NULL; + ompi_proc_t **r_proc_list=NULL; ompi_group_t *new_group_pointer; @@ -143,9 +143,6 @@ int MPI_Intercomm_merge(MPI_Comm intercomm, int high, if ( NULL != procs ) { free ( procs ); } - if ( NULL != l_proc_list ) { - free ( l_proc_list ); - } if ( NULL != r_proc_list ) { free ( r_proc_list ); }