1
1

Gah -- ompi_info doesn't setup the connect pseudo component, so it'll

be NULL.  Ensure to protect for this.

This commit was SVN r16333.
Этот коммит содержится в:
Jeff Squyres 2007-10-04 18:03:56 +00:00
родитель 13fa7ae93e
Коммит f92154fc72

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

@ -177,7 +177,9 @@ int btl_openib_component_open(void)
static int btl_openib_component_close(void)
{
/* Close down the connect pseudo component */
ompi_btl_openib_connect.bcf_finalize();
if (NULL != ompi_btl_openib_connect.bcf_finalize) {
ompi_btl_openib_connect.bcf_finalize();
}
ompi_btl_openib_ini_finalize();
return OMPI_SUCCESS;