diff options
Diffstat (limited to 'src/lstate.js')
-rw-r--r-- | src/lstate.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lstate.js b/src/lstate.js index d95889b..5842562 100644 --- a/src/lstate.js +++ b/src/lstate.js @@ -50,7 +50,7 @@ class lua_State extends lobject.TValue { this.ci = null; this.ciOff = null; this.stack = []; - this.openupval = []; + this.openupval = null; this.status = TS.LUA_OK; this.next = null; this.twups = [this]; @@ -138,7 +138,7 @@ const preinit_thread = function(L, g) { L.basehookcount = 0; L.allowhook = 1; L.hookcount = L.basehookcount; - L.openupval = []; + L.openupval = null; L.nny = 1; L.status = TS.LUA_OK; L.errfunc = 0; |