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 78152ae commit b80210cCopy full SHA for b80210c
orte/util/nidmap.c
@@ -384,7 +384,7 @@ int orte_util_decode_nidmap(opal_buffer_t *buf)
384
for (n=0; NULL != names[n]; n++) {
385
/* add this name to the pool */
386
nd = OBJ_NEW(orte_node_t);
387
- nd->name = names[n];
+ nd->name = strdup(names[n]);
388
opal_pointer_array_set_item(orte_node_pool, n, nd);
389
/* set the topology - always default to homogeneous
390
* as that is the most common scenario */
0 commit comments