Skip to content

Commit 7c5accf

Browse files
est31Zeno-
authored andcommittedFeb 14, 2015
Fix crash on passing false as value in table to table.copy(t)
Fixes #2293.
1 parent d44cb54 commit 7c5accf

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed
 

‎builtin/common/misc_helpers.lua

+2-3
Original file line numberDiff line numberDiff line change
@@ -545,12 +545,11 @@ function table.copy(t, seen)
545545
seen = seen or {}
546546
seen[t] = n
547547
for k, v in pairs(t) do
548-
n[type(k) ~= "table" and k or seen[k] or table.copy(k, seen)] =
549-
type(v) ~= "table" and v or seen[v] or table.copy(v, seen)
548+
n[(type(k) == "table" and (seen[k] or table.copy(k, seen))) or k] =
549+
(type(v) == "table" and (seen[v] or table.copy(v, seen))) or v
550550
end
551551
return n
552552
end
553-
554553
--------------------------------------------------------------------------------
555554
-- mainmenu only functions
556555
--------------------------------------------------------------------------------

0 commit comments

Comments
 (0)
Please sign in to comment.