This commit is contained in:
Roberto Ierusalimschy 2011-11-29 13:54:38 -02:00
parent 51650eac78
commit 8c62bde36f
1 changed files with 2 additions and 2 deletions

4
lvm.c
View File

@ -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
** See Copyright Notice in lua.h
*/
@ -535,7 +535,7 @@ void luaV_execute (lua_State *L) {
(--L->hookcount == 0 || L->hookmask & LUA_MASKLINE)) {
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);
lua_assert(base == ci->u.l.base);
lua_assert(base <= L->top && L->top < L->stack + L->stacksize);