1
1

Ugh - protect that --display-devel print with some NULL checks

This commit was SVN r31604.
Этот коммит содержится в:
Ralph Castain 2014-05-02 14:28:45 +00:00
родитель c7f55be387
Коммит 60c554e097

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

@ -488,8 +488,10 @@ int orte_dt_print_proc(char **output, char *prefix, orte_proc_t *src, opal_data_
hwloc_bitmap_free(mycpus);
asprintf(&tmp, "\n%sProcess OMPI jobid: %s App: %ld Process rank: %s Bound: %s", pfx2,
ORTE_JOBID_PRINT(src->name.jobid), (long)src->app_idx,
ORTE_VPID_PRINT(src->name.vpid), str);
free(str);
ORTE_VPID_PRINT(src->name.vpid), (NULL == str) ? "N/A" : str);
if (NULL != str) {
free(str);
}
} else {
/* just print a very simple output for users */
asprintf(&tmp, "\n%sProcess OMPI jobid: %s App: %ld Process rank: %s Bound: N/A", pfx2,