mirror of https://github.com/rusefi/lua.git
comment
This commit is contained in:
parent
51650eac78
commit
8c62bde36f
4
lvm.c
4
lvm.c
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
** $Id: lvm.c,v 2.144 2011/10/07 20:45:19 roberto Exp roberto $
|
** $Id: lvm.c,v 2.145 2011/11/28 17:25:16 roberto Exp roberto $
|
||||||
** Lua virtual machine
|
** Lua virtual machine
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
|
@ -535,7 +535,7 @@ void luaV_execute (lua_State *L) {
|
||||||
(--L->hookcount == 0 || L->hookmask & LUA_MASKLINE)) {
|
(--L->hookcount == 0 || L->hookmask & LUA_MASKLINE)) {
|
||||||
Protect(traceexec(L));
|
Protect(traceexec(L));
|
||||||
}
|
}
|
||||||
/* warning!! several calls may realloc the stack and invalidate `ra' */
|
/* WARNING: several calls may realloc the stack and invalidate `ra' */
|
||||||
ra = RA(i);
|
ra = RA(i);
|
||||||
lua_assert(base == ci->u.l.base);
|
lua_assert(base == ci->u.l.base);
|
||||||
lua_assert(base <= L->top && L->top < L->stack + L->stacksize);
|
lua_assert(base <= L->top && L->top < L->stack + L->stacksize);
|
||||||
|
|
Loading…
Reference in New Issue