diff options
Diffstat (limited to 'src/lundump.js')
-rw-r--r-- | src/lundump.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lundump.js b/src/lundump.js index ab1dd6f..b79e6ea 100644 --- a/src/lundump.js +++ b/src/lundump.js @@ -293,7 +293,7 @@ class BytecodeParser { luaU_undump(L) { this.checkHeader(); - let cl = new LClosure(this.readByte()); + let cl = new LClosure(L, this.readByte()); L.stack[L.top] = cl; L.top++; |