Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
few more leaks
authorAugustin Degomme <degomme@idpann.imag.fr>
Tue, 24 Sep 2013 13:19:18 +0000 (15:19 +0200)
committerAugustin Degomme <degomme@idpann.imag.fr>
Tue, 24 Sep 2013 13:19:18 +0000 (15:19 +0200)
src/smpi/colls/gather-ompi.c
teshsuite/smpi/allgatherv_coll.c

index 4a7489b..df34f27 100644 (file)
@@ -172,6 +172,7 @@ smpi_coll_tuned_gather_ompi_binomial(void *sbuf, int scount,
        /* other non-leaf nodes */
        free(tempbuf);
     }
+    xbt_free(bmtree);
     return MPI_SUCCESS;
 
  err_hndl:
index 2d8c87f..692dc12 100644 (file)
@@ -69,6 +69,8 @@ int main(int argc, char *argv[])
   }
   free(sb);
   free(rb);
+  free(recv_counts);
+  free(recv_disps);
   MPI_Finalize();
   return (EXIT_SUCCESS);
 }