1
1

Minor change: check for NULL before using the job map to avoid segfault when erroring out prior to creating the map

Этот коммит содержится в:
Ralph Castain 2016-09-04 07:53:12 -07:00
родитель 9c496f767b
Коммит fb51d65049

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

@ -324,7 +324,7 @@ static int create_dmns(orte_grpcomm_signature_t *sig,
*dmns = NULL;
return ORTE_ERR_NOT_FOUND;
}
if (0 == jdata->map->num_nodes) {
if (NULL == jdata->map || 0 == jdata->map->num_nodes) {
/* we haven't generated a job map yet - if we are the HNP,
* then we should only involve ourselves. Otherwise, we have
* no choice but to abort to avoid hangs */