We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b33b460 commit b526bcaCopy full SHA for b526bca
orte/util/nidmap.c
@@ -641,6 +641,13 @@ int orte_util_encode_nodemap(opal_buffer_t *buffer)
641
OBJ_CONSTRUCT(&bucket, opal_buffer_t);
642
while (NULL != (item = opal_list_remove_first(&topos))) {
643
rng = (orte_regex_range_t*)item;
644
+ if (NULL == rng->t) {
645
+ /* when we pass thru here prior to launching the daemons, we
646
+ * won't have topologies for them and so this entry might
647
+ * be NULL - protect ourselves */
648
+ OBJ_RELEASE(item);
649
+ continue;
650
+ }
651
if (NULL == tmp) {
652
asprintf(&tmp, "%d", rng->cnt);
653
} else {
0 commit comments