1
1

Merge pull request #1824 from hjelmn/rdmacm_fix

btl/openib: fix segmentation fault
Этот коммит содержится в:
Jeff Squyres 2016-06-28 18:10:35 -04:00 коммит произвёл GitHub
родитель 955269b4f1 8128c8eb29
Коммит f18d6606da

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

@ -3771,7 +3771,9 @@ static int btl_openib_component_progress(void)
for(i = 0; i < mca_btl_openib_component.devices_count; i++) {
mca_btl_openib_device_t *device =
(mca_btl_openib_device_t *) opal_pointer_array_get_item(&mca_btl_openib_component.devices, i);
count += progress_one_device(device);
if (NULL != device) {
count += progress_one_device(device);
}
}
#if OPAL_CUDA_SUPPORT /* CUDA_ASYNC_SEND */