X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a2896352972149a8e2c7c014c3413c5c7c686227..8006a03b1ef66a0ddd4a4983ef170781a87a7225:/teshsuite/smpi/vector_test.c diff --git a/teshsuite/smpi/vector_test.c b/teshsuite/smpi/vector_test.c index 8fd729f1f1..ea41ec2c57 100644 --- a/teshsuite/smpi/vector_test.c +++ b/teshsuite/smpi/vector_test.c @@ -5,7 +5,7 @@ int main(int argc, char **argv) { int rank, i, j; - double a[SIZE][SIZE]; + double a[SIZE][SIZE] = {{0}}; MPI_Datatype columntype; @@ -35,7 +35,7 @@ int main(int argc, char **argv) { } - + MPI_Type_free(&columntype); MPI_Finalize(); return 0; }