summaryrefslogtreecommitdiff
path: root/ldo.c
diff options
context:
space:
mode:
Diffstat (limited to 'ldo.c')
-rw-r--r--ldo.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/ldo.c b/ldo.c
index d90bf263..45abf3da 100644
--- a/ldo.c
+++ b/ldo.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.c,v 2.109 2013/04/19 21:05:04 roberto Exp roberto $ 2** $Id: ldo.c,v 2.110 2013/08/27 18:53:35 roberto Exp roberto $
3** Stack and Call structure of Lua 3** Stack and Call structure of Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -206,7 +206,11 @@ void luaD_shrinkstack (lua_State *L) {
206 int inuse = stackinuse(L); 206 int inuse = stackinuse(L);
207 int goodsize = inuse + (inuse / 8) + 2*EXTRA_STACK; 207 int goodsize = inuse + (inuse / 8) + 2*EXTRA_STACK;
208 if (goodsize > LUAI_MAXSTACK) goodsize = LUAI_MAXSTACK; 208 if (goodsize > LUAI_MAXSTACK) goodsize = LUAI_MAXSTACK;
209 if (inuse > LUAI_MAXSTACK || /* handling stack overflow? */ 209 if (L->stacksize > LUAI_MAXSTACK) /* was handling stack overflow? */
210 luaE_freeCI(L); /* free all CIs (list grew because of an error) */
211 else
212 luaE_shrinkCI(L); /* shrink list */
213 if (inuse > LUAI_MAXSTACK || /* still handling stack overflow? */
210 goodsize >= L->stacksize) /* would grow instead of shrink? */ 214 goodsize >= L->stacksize) /* would grow instead of shrink? */
211 condmovestack(L); /* don't change stack (change only for debugging) */ 215 condmovestack(L); /* don't change stack (change only for debugging) */
212 else 216 else