Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix new/delete mismatch.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Wed, 15 May 2019 07:55:33 +0000 (09:55 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Wed, 15 May 2019 07:55:33 +0000 (09:55 +0200)
examples/s4u/mc-failing-assert/s4u-mc-failing-assert.cpp

index 3a4a8a8..b87e6f4 100644 (file)
@@ -20,7 +20,7 @@ static int server(int worker_amount)
   for (int count = 0; count < worker_amount; count++) {
     int* msg  = static_cast<int*>(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