1
1

Ensure to initialize the variable so that we don't segv.

This commit was SVN r15078.
Этот коммит содержится в:
Jeff Squyres 2007-06-14 13:59:28 +00:00
родитель fde15ac97d
Коммит 2399b9a535

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

@ -466,7 +466,7 @@ static int init_one_hca(opal_list_t *btl_list, struct ibv_device* ib_dev)
uint8_t i, k = 0;
int ret = -1, port_cnt;
ompi_btl_openib_ini_values_t values, default_values;
int *allowed_ports;
int *allowed_ports = NULL;
hca = malloc(sizeof(mca_btl_openib_hca_t));
if(NULL == hca){