1
1

Don't segfault on Windows because of a NULL value.

This commit was SVN r20682.
Этот коммит содержится в:
George Bosilca 2009-03-02 21:57:16 +00:00
родитель a8456b27d7
Коммит 826f3319b4

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

@ -87,7 +87,9 @@ int opal_thread_join(opal_thread_t *t, void **thr_return)
return OPAL_ERROR;
}
*thr_return = (void *)((intptr_t)rc);
if( NULL != **thr_return ) {
*thr_return = (void *)((intptr_t)rc);
}
return OPAL_SUCCESS;
}