1
1

Protect the free since if we never send any messages this could be NULL.

This commit was SVN r14421.
Этот коммит содержится в:
Josh Hursey 2007-04-19 02:17:50 +00:00
родитель 51fc2474f1
Коммит d12ddcdb7a

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

@ -108,8 +108,10 @@ int mca_bml_r2_ft_event(int state) {
}
for(p = 0; p < (int)num_procs; ++p) {
OBJ_RELEASE(procs[p]->proc_modex);
procs[p]->proc_modex = NULL;
if( NULL != procs[p]->proc_modex ) {
OBJ_RELEASE(procs[p]->proc_modex);
procs[p]->proc_modex = NULL;
}
}
if (OMPI_SUCCESS != (ret = mca_pml_base_modex_init())) {