Fix a typo that caused a segfault if a caller requested that we abort an array of procs (i.e., MPI_Abort when it specifies the other procs to be aborted).
Should hopefully address the recent problem seen with the BLACS AUX test as discussed on the user mailing list. This commit was SVN r12055.
Этот коммит содержится в:
родитель
ee0df85ece
Коммит
82a023c731
@ -134,7 +134,7 @@ void orte_errmgr_base_recv(int status, orte_process_name_t* sender,
|
||||
|
||||
/* unpack the array of process names */
|
||||
count = nprocs;
|
||||
if (ORTE_SUCCESS != (rc = orte_dss.unpack(buffer, &procs, &count, ORTE_NAME))) {
|
||||
if (ORTE_SUCCESS != (rc = orte_dss.unpack(buffer, procs, &count, ORTE_NAME))) {
|
||||
ORTE_ERROR_LOG(rc);
|
||||
goto SEND_ANSWER;
|
||||
}
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user