From: Frederic Suter Date: Mon, 9 Mar 2020 08:59:52 +0000 (+0100) Subject: plug leak and use string X-Git-Tag: v3.26~769 X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/e03467b79d75151432c781357be39a5b6a282b76 plug leak and use string --- diff --git a/teshsuite/s4u/host-on-off-actors/host-on-off-actors.cpp b/teshsuite/s4u/host-on-off-actors/host-on-off-actors.cpp index a651ff4608..246ceec391 100644 --- a/teshsuite/s4u/host-on-off-actors/host-on-off-actors.cpp +++ b/teshsuite/s4u/host-on-off-actors/host-on-off-actors.cpp @@ -25,30 +25,33 @@ static void actor_daemon() static void commTX() { XBT_INFO(" Start TX"); - simgrid::s4u::Mailbox::by_name("comm")->put_init(xbt_strdup("COMM"), 100000000)->detach(); + std::string* 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 { simgrid::s4u::this_actor::sleep_for(30); } catch (const simgrid::HostFailureException&) { XBT_INFO("The host has died ... as expected."); } + delete payload; + XBT_INFO(" TX done"); } static void commRX() { - char* payload = nullptr; + const std::string* payload = nullptr; XBT_INFO(" Start RX"); try { - payload = static_cast(simgrid::s4u::Mailbox::by_name("comm")->get()); - XBT_INFO(" Receive message: %s", payload); + payload = static_cast(simgrid::s4u::Mailbox::by_name("comm")->get()); + XBT_INFO(" Receive message: %s", payload->c_str()); } catch (const simgrid::HostFailureException&) { XBT_INFO(" Receive message: HOST_FAILURE"); } catch (const simgrid::NetworkFailureException&) { XBT_INFO(" Receive message: TRANSFER_FAILURE"); } - xbt_free(payload); + delete payload; XBT_INFO(" RX Done"); }