From af70905246acfad225904b64d027e5b01c7b10eb Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 18 Jun 2018 09:08:10 -0300 Subject: no need to check whether libraries and host use the same kernel; Lua should work correctly with several copies of the kernel --- lmem.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lmem.c') diff --git a/lmem.c b/lmem.c index 5c73acd5..56b4affe 100644 --- a/lmem.c +++ b/lmem.c @@ -1,5 +1,5 @@ /* -** $Id: lmem.c,v 1.96 2018/01/28 15:13:26 roberto Exp roberto $ +** $Id: lmem.c,v 1.97 2018/05/30 14:25:52 roberto Exp roberto $ ** Interface to Memory Manager ** See Copyright Notice in lua.h */ @@ -123,7 +123,7 @@ void luaM_free_ (lua_State *L, void *block, size_t osize) { static void *tryagain (lua_State *L, void *block, size_t osize, size_t nsize) { global_State *g = G(L); - if (g->version) { /* is state fully build? */ + if (ttisnil(&g->nilvalue)) { /* is state fully build? */ luaC_fullgc(L, 1); /* try to free some memory... */ return (*g->frealloc)(g->ud, block, osize, nsize); /* try again */ } -- cgit v1.2.3-55-g6feb