Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix the fix of commit 6d12558bf98bb09f8fc8c45527d740bf999f789c.
authorArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Fri, 4 Oct 2013 19:23:43 +0000 (21:23 +0200)
committerArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Fri, 4 Oct 2013 21:08:51 +0000 (23:08 +0200)
src/smpi/smpi_pmpi.c

index de11ee9..e7b5d44 100644 (file)
@@ -1374,7 +1374,7 @@ int PMPI_Test(MPI_Request * request, int *flag, MPI_Status * status)
   int retval = 0;
 
   smpi_bench_end();
-  if (*request == MPI_REQUEST_NULL || flag == NULL) {
+  if (request == NULL || flag == NULL) {
     retval = MPI_ERR_ARG;
   } else if (*request == MPI_REQUEST_NULL) {
     *flag= TRUE;