1
1

Fix Coverity defect 675: possible NULL dereference in an error

condition.

This commit was SVN r15957.
Этот коммит содержится в:
Jeff Squyres 2007-08-25 12:18:55 +00:00
родитель b69c7688a0
Коммит 18db56e270

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

@ -305,7 +305,7 @@ int ompi_comm_connect_accept ( ompi_communicator_t *comm, int root,
free ( proc_list );
}
if ( OMPI_SUCCESS != rc ) {
if ( MPI_COMM_NULL != newcomp ) {
if ( MPI_COMM_NULL != newcomp && NULL != newcomp ) {
OBJ_RETAIN(newcomp);
newcomp = MPI_COMM_NULL;
}