1
1

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.
Этот коммит содержится в:
Ralph Castain 2006-10-07 01:58:11 +00:00
родитель ee0df85ece
Коммит 82a023c731

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

@ -134,7 +134,7 @@ void orte_errmgr_base_recv(int status, orte_process_name_t* sender,
/* unpack the array of process names */ /* unpack the array of process names */
count = nprocs; 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); ORTE_ERROR_LOG(rc);
goto SEND_ANSWER; goto SEND_ANSWER;
} }