]> AND Public Git Repository - simgrid.git/blobdiff - teshsuite/s4u/host-on-off-actors/host-on-off-actors.cpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix a memleak
[simgrid.git] / teshsuite / s4u / host-on-off-actors / host-on-off-actors.cpp
index c681ddf59b54b439eaaf1e558c9b0138f9641870..8f12f850e6ac6cdab79d3904bb9b89900b8b2ac1 100644 (file)
@@ -25,7 +25,7 @@ XBT_ATTRIB_NORETURN static void actor_daemon()
 static void commTX()
 {
   XBT_INFO("  Start TX");
-  std::string* payload = new std::string("COMM");
+  auto* payload = new std::string("COMM");
   simgrid::s4u::Mailbox::by_name("comm")->put_init(payload, 100000000)->detach();
   // We should wait a bit (if not the process will end before the communication, hence an exception on the other side).
   try {