1
1

Fix CID 413: possible uninitialized variable

This commit was SVN r19176.
Этот коммит содержится в:
Jeff Squyres 2008-08-06 12:25:56 +00:00
родитель e105b3f254
Коммит 765749209f

Просмотреть файл

@ -410,7 +410,7 @@ int ompi_comm_split ( ompi_communicator_t* comm, int color, int key,
int *results=NULL, *sorted=NULL;
int *rresults=NULL, *rsorted=NULL;
int rc=OMPI_SUCCESS;
ompi_communicator_t *newcomp;
ompi_communicator_t *newcomp = NULL;
int *lranks=NULL, *rranks=NULL;
ompi_comm_allgatherfct *allgatherfct=NULL;
@ -622,7 +622,7 @@ int ompi_comm_split ( ompi_communicator_t* comm, int color, int key,
/* Step 4: if we are not part of the comm, free the struct */
/* --------------------------------------------------------- */
if ( MPI_UNDEFINED == color ) {
if ( NULL != newcomp && MPI_UNDEFINED == color ) {
ompi_comm_free ( &newcomp );
}