Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
factor verbose logging
[simgrid.git] / src / smpi / smpi_mpi_dt.c
index d42e29f030095cb6a8e3bc2c5741a5184c7e9be0..19f02289f3ef68fcd808296150ffcbab6ce06712 100644 (file)
@@ -181,7 +181,7 @@ int smpi_datatype_copy(void *sendbuf, int sendcount, MPI_Datatype sendtype,
 
       s_smpi_mpi_vector_t* type_c = (s_smpi_mpi_vector_t*)sendtype;
 
-      void * buf_tmp = malloc(count * type_c->size_oldtype);
+      void * buf_tmp = xbt_malloc(count * type_c->size_oldtype);
 
       subtype->serialize( sendbuf, buf_tmp,1, subtype);
       subtype =  recvtype->substruct;