From: Arnaud Giersch Date: Wed, 15 May 2019 07:55:33 +0000 (+0200) Subject: Fix new/delete mismatch. X-Git-Tag: v3.22.4~127^2~13 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/3b7cd6ba4403e9f2c5630d7b319a419e3a836595 Fix new/delete mismatch. --- diff --git a/examples/s4u/mc-failing-assert/s4u-mc-failing-assert.cpp b/examples/s4u/mc-failing-assert/s4u-mc-failing-assert.cpp index 3a4a8a8cc3..b87e6f44c2 100644 --- a/examples/s4u/mc-failing-assert/s4u-mc-failing-assert.cpp +++ b/examples/s4u/mc-failing-assert/s4u-mc-failing-assert.cpp @@ -20,7 +20,7 @@ static int server(int worker_amount) for (int count = 0; count < worker_amount; count++) { int* msg = static_cast(mb->get()); value_got = *msg; - free(msg); + delete msg; } /* * We assert here that the last message we got (which overwrite any previously received message) is the one from the