Skip to content

Commit

Permalink
Merge pull request #1824 from hjelmn/rdmacm_fix
Browse files Browse the repository at this point in the history
btl/openib: fix segmentation fault
  • Loading branch information
jsquyres authored Jun 28, 2016
2 parents 955269b + 8128c8e commit f18d660
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion opal/mca/btl/openib/btl_openib_component.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit f18d660

Please sign in to comment.