mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
util.jsonpointer: Fix off-by-one in array resolution
Fixes #1753 Not known to be used anywhere
This commit is contained in:
parent
11638f57e2
commit
d05af9f2b5
2 changed files with 2 additions and 2 deletions
|
@ -24,7 +24,7 @@ local function resolve_json_pointer(ref : table, path : string) : any, ptr_error
|
||||||
elseif idx is integer then
|
elseif idx is integer then
|
||||||
local i = tonumber(token)
|
local i = tonumber(token)
|
||||||
if token == "-" then i = #ref + 1 end
|
if token == "-" then i = #ref + 1 end
|
||||||
new_ref = ref[i]
|
new_ref = ref[i+1]
|
||||||
else
|
else
|
||||||
return nil, "invalid-table"
|
return nil, "invalid-table"
|
||||||
end
|
end
|
||||||
|
|
|
@ -20,7 +20,7 @@ local function resolve_json_pointer(ref, path)
|
||||||
if token == "-" then
|
if token == "-" then
|
||||||
i = #ref + 1
|
i = #ref + 1
|
||||||
end
|
end
|
||||||
new_ref = ref[i]
|
new_ref = ref[i + 1]
|
||||||
else
|
else
|
||||||
return nil, "invalid-table"
|
return nil, "invalid-table"
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue