Fix stackoverflow caused by new table.copy

This commit is contained in:
Eduardo Bart 2012-08-19 05:48:25 -03:00
parent 367955615e
commit 0e3136f424
1 changed files with 10 additions and 2 deletions

View File

@ -14,10 +14,18 @@ function table.dump(t, depth)
end end
function table.copy(t) function table.copy(t)
local res = {}
for k,v in pairs(t) do
res[k] = v
end
return res
end
function table.recursivecopy(t)
local res = {} local res = {}
for k,v in pairs(t) do for k,v in pairs(t) do
if type(v) == "table" then if type(v) == "table" then
res[k] = table.copy(v) res[k] = table.recursivecopy(v)
else else
res[k] = v res[k] = v
end end