summaryrefslogtreecommitdiff
path: root/ltests.c
diff options
context:
space:
mode:
Diffstat (limited to 'ltests.c')
-rw-r--r--ltests.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ltests.c b/ltests.c
index 3571b537..93a2b8e0 100644
--- a/ltests.c
+++ b/ltests.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltests.c,v 1.137 2002/10/22 18:07:55 roberto Exp roberto $ 2** $Id: ltests.c,v 1.138 2002/10/25 20:05:28 roberto Exp roberto $
3** Internal Module for Debugging of the Lua Implementation 3** Internal Module for Debugging of the Lua Implementation
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -95,7 +95,6 @@ static void freeblock (void *block) {
95 95
96 96
97void *debug_realloc (void *block, size_t oldsize, size_t size) { 97void *debug_realloc (void *block, size_t oldsize, size_t size) {
98 lua_assert((oldsize == 0) == (block == NULL));
99 lua_assert(oldsize == 0 || oldsize == *blocksize(block)); 98 lua_assert(oldsize == 0 || oldsize == *blocksize(block));
100 /* ISO does not specify what realloc(NULL, 0) does */ 99 /* ISO does not specify what realloc(NULL, 0) does */
101 lua_assert(block != NULL || size > 0); 100 lua_assert(block != NULL || size > 0);