Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
I meant to paraphrase the expression 'give me liberty or give me death', actually
authorMartin Quinson <martin.quinson@loria.fr>
Wed, 8 Jan 2014 06:47:20 +0000 (07:47 +0100)
committerMartin Quinson <martin.quinson@loria.fr>
Wed, 8 Jan 2014 06:47:20 +0000 (07:47 +0100)
src/xbt/mmalloc/mfree.c

index ebbccaf..a7241fc 100644 (file)
@@ -34,7 +34,7 @@ void mfree(struct mdesc *mdp, void *ptr)
   block = BLOCK(ptr);
 
   if ((char *) ptr < (char *) mdp->heapbase || block > mdp->heapsize) {
-    fprintf(stderr,"Ouch, this pointer is not mine. I refuse to free it. I'd rather die than freeing it!!\n");
+    fprintf(stderr,"Ouch, this pointer is not mine, I refuse to free it. Give me valid pointers, or give me death!!\n");
     abort();
   }