X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8b3658fa4a201ffb434857bb83a75b98aac5be79..08513f6dfcb4203b1320f4a0f4352382c7e0995e:/teshsuite/smpi/hvector_test.c diff --git a/teshsuite/smpi/hvector_test.c b/teshsuite/smpi/hvector_test.c index 86d1a403d3..f3cb04fc9c 100644 --- a/teshsuite/smpi/hvector_test.c +++ b/teshsuite/smpi/hvector_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; }