Skip to content

Commit 100329f

Browse files
committed
official lua bugfix
1 parent 553c30c commit 100329f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

3rd/lua/lgc.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -652,10 +652,11 @@ static void clearkeys (global_State *g, GCObject *l, GCObject *f) {
652652
Table *h = gco2t(l);
653653
Node *n, *limit = gnodelast(h);
654654
for (n = gnode(h, 0); n < limit; n++) {
655-
if (iscleared(g, gkey(n))) {
655+
if (!ttisnil(gval(n)) && (iscleared(g, gkey(n)))) {
656656
setnilvalue(gval(n)); /* remove value ... */
657-
removeentry(n); /* and remove entry from table */
658657
}
658+
if (ttisnil(gval(n))) /* is entry empty? */
659+
removeentry(n); /* remove entry from table */
659660
}
660661
}
661662
}

0 commit comments

Comments
 (0)