[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.1.1-62-gaa1b034
Service Account
noreply at mpich.org
Mon Jul 7 13:40:26 CDT 2014
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "MPICH primary repository".
The branch, master has been updated
via aa1b034353ca4c1ffbfe4d25cb69b62bbe9dee77 (commit)
from 3ac0b20ed99578c7997df48f210fce9fbc1ea891 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.mpich.org/mpich.git/commitdiff/aa1b034353ca4c1ffbfe4d25cb69b62bbe9dee77
commit aa1b034353ca4c1ffbfe4d25cb69b62bbe9dee77
Author: Su Huang <suhuang at us.ibm.com>
Date: Thu Jun 12 09:10:04 2014 -0400
MPI_Iallgather has no validity check for sendcount
(ibm) D198243
Signed-off-by: Michael Blocksome <blocksom at us.ibm.com>
Signed-off-by: Wesley Bland <wbland at anl.gov>
diff --git a/src/mpi/coll/iallgather.c b/src/mpi/coll/iallgather.c
index f45c291..29b8cc1 100644
--- a/src/mpi/coll/iallgather.c
+++ b/src/mpi/coll/iallgather.c
@@ -673,6 +673,7 @@ int MPI_Iallgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
{
if (sendbuf != MPI_IN_PLACE)
MPIR_ERRTEST_DATATYPE(sendtype, "sendtype", mpi_errno);
+ MPIR_ERRTEST_COUNT(sendcount, mpi_errno);
MPIR_ERRTEST_DATATYPE(recvtype, "recvtype", mpi_errno);
MPIR_ERRTEST_COMM(comm, mpi_errno);
-----------------------------------------------------------------------
Summary of changes:
src/mpi/coll/iallgather.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
hooks/post-receive
--
MPICH primary repository
More information about the commits
mailing list