Fix Coverity defect 675: possible NULL dereference in an error
condition. This commit was SVN r15957.
Этот коммит содержится в:
родитель
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;
|
||||
}
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user