|
|
||
|
Yes, there was another bug there (which means sloppy tests) :-(
Follows the correction:
file ltable.c, line 98 (function luaH_index):
- if (0 <= i && i < t->sizearray) { /* is `key' inside array part? */
+ if (0 <= i && i <= t->sizearray) { /* is `key' inside array part? */
-- Roberto