1
1

op_commutative.c: ...but we should check for MPI_OP_NULL

Refs trac:4548

This commit was SVN r31492.

The following Trac tickets were found above:
  Ticket 4548 --> https://svn.open-mpi.org/trac/ompi/ticket/4548
Этот коммит содержится в:
Jeff Squyres 2014-04-22 19:30:55 +00:00
родитель dba256cd6c
Коммит b0c4b1aa20

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

@ -45,7 +45,7 @@ int MPI_Op_commutative(MPI_Op op, int *commute)
if (MPI_PARAM_CHECK) {
OMPI_ERR_INIT_FINALIZE(FUNC_NAME);
if (NULL == op) {
if (NULL == op || MPI_OP_NULL == op) {
return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_OP,
FUNC_NAME);
}