From 01f62c11a29d62c74e7680f2d163bf38aedda056 Mon Sep 17 00:00:00 2001 From: Augustin Degomme Date: Thu, 30 Oct 2014 14:48:55 +0100 Subject: [PATCH] don't push null request back in the dynar --- src/smpi/smpi_replay.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/smpi/smpi_replay.c b/src/smpi/smpi_replay.c index a8ffb170c1..685f7f3b42 100644 --- a/src/smpi/smpi_replay.c +++ b/src/smpi/smpi_replay.c @@ -364,6 +364,7 @@ static void action_test(const char *const *action){ /* push back request in dynar to be caught by a subsequent wait. if the test * did succeed, the request is now NULL. */ + if(request) xbt_dynar_push_as(reqq[smpi_process_index()],MPI_Request, request); #ifdef HAVE_TRACING -- 2.20.1