diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-11-29 13:54:38 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-11-29 13:54:38 -0200 |
commit | 8c62bde36fe129454bc818b5ee073267f93fe4ab (patch) | |
tree | cd21719d07ca3c073d76f365495eeb8757d313bc | |
parent | 51650eac786e642a324877af20c9df698ab0c8bd (diff) | |
download | lua-8c62bde36fe129454bc818b5ee073267f93fe4ab.tar.gz lua-8c62bde36fe129454bc818b5ee073267f93fe4ab.tar.bz2 lua-8c62bde36fe129454bc818b5ee073267f93fe4ab.zip |
comment
-rw-r--r-- | lvm.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lvm.c,v 2.144 2011/10/07 20:45:19 roberto Exp roberto $ | 2 | ** $Id: lvm.c,v 2.145 2011/11/28 17:25:16 roberto Exp roberto $ |
3 | ** Lua virtual machine | 3 | ** Lua virtual machine |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -535,7 +535,7 @@ void luaV_execute (lua_State *L) { | |||
535 | (--L->hookcount == 0 || L->hookmask & LUA_MASKLINE)) { | 535 | (--L->hookcount == 0 || L->hookmask & LUA_MASKLINE)) { |
536 | Protect(traceexec(L)); | 536 | Protect(traceexec(L)); |
537 | } | 537 | } |
538 | /* warning!! several calls may realloc the stack and invalidate `ra' */ | 538 | /* WARNING: several calls may realloc the stack and invalidate `ra' */ |
539 | ra = RA(i); | 539 | ra = RA(i); |
540 | lua_assert(base == ci->u.l.base); | 540 | lua_assert(base == ci->u.l.base); |
541 | lua_assert(base <= L->top && L->top < L->stack + L->stacksize); | 541 | lua_assert(base <= L->top && L->top < L->stack + L->stacksize); |