Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add leak checking for info and errhandlers
[simgrid.git] / src / smpi / mpi / smpi_info.cpp
index bd68f4c..ed832a6 100644 (file)
@@ -17,6 +17,7 @@ void Info::ref()
 void Info::unref(Info* info){
   info->refcount_--;
   if(info->refcount_==0){
+    F2C::free_f(info->c2f());
     delete info;
   }
 }