Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
memleak founds by cppcheck
[simgrid.git] / examples / gras / chrono / chrono.c
index db0301b..c703981 100644 (file)
@@ -76,6 +76,10 @@ int multiplier (int argc,char *argv[])
     j++;
     GRAS_BENCH_ONCE_RUN_ONCE_END();
   }
-
+  free(A);
+  free(B);
+  free(C);
+   
+  gras_exit();
   return 0;
 }