From d717a5cac91120daf9331483d1b9a00c4fe3551b Mon Sep 17 00:00:00 2001 From: ceriel Date: Thu, 30 Nov 1989 15:12:11 +0000 Subject: [PATCH] Corrected assertion --- modules/src/malloc/mal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/src/malloc/mal.c b/modules/src/malloc/mal.c index 5ff02b0f..5c160660 100644 --- a/modules/src/malloc/mal.c +++ b/modules/src/malloc/mal.c @@ -291,7 +291,7 @@ realloc(addr, n) free(addr); check_work_empty("mv_realloc"); #ifdef STORE - assert(! in_store(new)); + assert(! in_store(mallink_of_block(new))); #endif return new; }