X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3eafc8614456c28407dd5ce45198bcf83a963615..5ffbdb20797e6741e7b0b4b68a3f733bd32d45c5:/teshsuite/smpi/mpich3-test/coll/bcastzerotype.c?ds=sidebyside diff --git a/teshsuite/smpi/mpich3-test/coll/bcastzerotype.c b/teshsuite/smpi/mpich3-test/coll/bcastzerotype.c index 59f2a5bb1b..d4a4956cbd 100644 --- a/teshsuite/smpi/mpich3-test/coll/bcastzerotype.c +++ b/teshsuite/smpi/mpich3-test/coll/bcastzerotype.c @@ -26,8 +26,8 @@ int main(int argc, char *argv[]) /* a random non-zero sized buffer */ #define NELEM (10) - buf = malloc(NELEM*sizeof(int)); - assert(buf); + buf = malloc(NELEM * sizeof(int)); + assert(buf!=NULL); for (i = 0; i < NELEM; i++) { buf[i] = wrank * NELEM + i; @@ -47,6 +47,8 @@ int main(int argc, char *argv[]) assert(buf[i] == wrank * NELEM + i); } + free(buf); + MPI_Type_free(&type); MPI_Finalize();