From c4a38f47f6da06250f23dd90e49b5672066e2ea8 Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Wed, 29 Aug 2007 01:23:18 +0000 Subject: [PATCH] Resolve Coverity CID 467: remove unused variable / dead code. This commit was SVN r15997. --- ompi/mca/coll/hierarch/coll_hierarch.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ompi/mca/coll/hierarch/coll_hierarch.c b/ompi/mca/coll/hierarch/coll_hierarch.c index 1dc0c075c5..3ab490cc3a 100644 --- a/ompi/mca/coll/hierarch/coll_hierarch.c +++ b/ompi/mca/coll/hierarch/coll_hierarch.c @@ -230,7 +230,6 @@ int mca_coll_hierarch_module_enable (mca_coll_base_module_1_1_0_t *module, { int color; int size, rank, ret=OMPI_SUCCESS; - int *llr=NULL; struct ompi_communicator_t *lcomm=NULL; struct ompi_communicator_t *llcomm=NULL; @@ -293,9 +292,6 @@ int mca_coll_hierarch_module_enable (mca_coll_base_module_1_1_0_t *module, } exit: - if ( NULL != llr ) { - free ( llr ); - } if ( OMPI_SUCCESS != ret ) { ompi_comm_free ( &lcomm ); return OMPI_ERROR;