summaryrefslogtreecommitdiffstats
path: root/lua/lfunc.c
diff options
context:
space:
mode:
Diffstat (limited to 'lua/lfunc.c')
-rw-r--r--lua/lfunc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/lfunc.c b/lua/lfunc.c
index 4fd27fe..e90e152 100644
--- a/lua/lfunc.c
+++ b/lua/lfunc.c
@@ -1,5 +1,5 @@
/*
-** $Id: lfunc.c,v 2.29 2012/05/08 13:53:33 roberto Exp $
+** $Id: lfunc.c,v 2.30.1.1 2013/04/12 18:48:47 roberto Exp $
** Auxiliary functions to manipulate prototypes and closures
** See Copyright Notice in lua.h
*/
@@ -52,12 +52,12 @@ UpVal *luaF_findupval (lua_State *L, StkId level) {
while (*pp != NULL && (p = gco2uv(*pp))->v >= level) {
GCObject *o = obj2gco(p);
lua_assert(p->v != &p->u.value);
+ lua_assert(!isold(o) || isold(obj2gco(L)));
if (p->v == level) { /* found a corresponding upvalue? */
if (isdead(g, o)) /* is it dead? */
changewhite(o); /* resurrect it */
return p;
}
- resetoldbit(o); /* may create a newer upval after this one */
pp = &p->next;
}
/* not found: create a new one */