You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
590 B
15 lines
590 B
diff -up lua-5.3.4/src/lgc.c.bug5 lua-5.3.4/src/lgc.c
|
|
--- lua-5.3.4/src/lgc.c.bug5 2017-10-29 20:30:18.824283152 -0400
|
|
+++ lua-5.3.4/src/lgc.c 2017-10-29 20:31:12.133021523 -0400
|
|
@@ -643,8 +643,9 @@ static void clearkeys (global_State *g,
|
|
for (n = gnode(h, 0); n < limit; n++) {
|
|
if (!ttisnil(gval(n)) && (iscleared(g, gkey(n)))) {
|
|
setnilvalue(gval(n)); /* remove value ... */
|
|
- removeentry(n); /* and remove entry from table */
|
|
}
|
|
+ if (ttisnil(gval(n))) /* is entry empty? */
|
|
+ removeentry(n); /* remove entry from table */
|
|
}
|
|
}
|
|
}
|