mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.serialization: Separate errors for multiple table references and max depth
This commit is contained in:
parent
97c56e6c71
commit
bdadc69e1a
1 changed files with 5 additions and 2 deletions
|
@ -128,8 +128,11 @@ local function new(opt)
|
|||
-- l - position in o of where to insert next token
|
||||
-- d - depth, used for indentation
|
||||
local function serialize_table(t, o, l, d)
|
||||
if o[t] or d > maxdepth then
|
||||
o[l], l = fallback(t, "recursion"), l + 1;
|
||||
if o[t] then
|
||||
o[l], l = fallback(t, "table has multiple references"), l + 1;
|
||||
return l;
|
||||
elseif d > maxdepth then
|
||||
o[l], l = fallback(t, "max table depth reached"), l + 1;
|
||||
return l;
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue