diff options
Diffstat (limited to 'lstate.c')
-rw-r--r-- | lstate.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -271,6 +271,7 @@ static void close_state (lua_State *L) { | |||
271 | if (!completestate(g)) /* closing a partially built state? */ | 271 | if (!completestate(g)) /* closing a partially built state? */ |
272 | luaC_freeallobjects(L); /* just collect its objects */ | 272 | luaC_freeallobjects(L); /* just collect its objects */ |
273 | else { /* closing a fully built state */ | 273 | else { /* closing a fully built state */ |
274 | L->ci = &L->base_ci; /* unwind CallInfo list */ | ||
274 | luaD_closeprotected(L, 1, LUA_OK); /* close all upvalues */ | 275 | luaD_closeprotected(L, 1, LUA_OK); /* close all upvalues */ |
275 | luaC_freeallobjects(L); /* collect all objects */ | 276 | luaC_freeallobjects(L); /* collect all objects */ |
276 | luai_userstateclose(L); | 277 | luai_userstateclose(L); |