summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-09-21 11:41:25 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-09-21 11:41:25 -0300
commitdbde9f881768666363b3a4297645f3d490e5d1b6 (patch)
tree9d072803671731c512a70e91ac67147f63f8b394
parent857a1204d8df62c20adab201329445f335c4066e (diff)
downloadlua-github-4_0_Beta.tar.gz
wrong assertv4_0_Betav4.0-beta
-rw-r--r--lstate.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lstate.c b/lstate.c
index b45e31ce..d315e976 100644
--- a/lstate.c
+++ b/lstate.c
@@ -1,5 +1,5 @@
/*
-** $Id: lstate.c,v 1.38 2000/09/11 19:42:57 roberto Exp roberto $
+** $Id: lstate.c,v 1.39 2000/09/12 18:42:32 roberto Exp roberto $
** Global State
** See Copyright Notice in lua.h
*/
@@ -97,7 +97,6 @@ void lua_close (lua_State *L) {
luaM_free(L, L->Mbuffer);
LUA_ASSERT(L->nblocks == 0, "wrong count for nblocks");
luaM_free(L, L);
- LUA_ASSERT(L->Cbase == L->stack, "stack not empty");
LUA_ASSERT(L != lua_state || memdebug_numblocks == 0, "memory leak!");
LUA_ASSERT(L != lua_state || memdebug_total == 0,"memory leak!");
}