Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
do not free the group when freeing the comm, there is a separate function for that...
[simgrid.git] / src / smpi / smpi_comm.c
index c189c4d..d49b858 100644 (file)
@@ -48,7 +48,6 @@ MPI_Comm smpi_comm_new(MPI_Group group)
 
 void smpi_comm_destroy(MPI_Comm comm)
 {
-  smpi_group_destroy(comm->group);
   xbt_free(comm);
 }