mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +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
|
||||
local i = tonumber(token)
|
||||
if token == "-" then i = #ref + 1 end
|
||||
new_ref = ref[i]
|
||||
new_ref = ref[i+1]
|
||||
else
|
||||
return nil, "invalid-table"
|
||||
end
|
||||
|
|
|
@ -20,7 +20,7 @@ local function resolve_json_pointer(ref, path)
|
|||
if token == "-" then
|
||||
i = #ref + 1
|
||||
end
|
||||
new_ref = ref[i]
|
||||
new_ref = ref[i + 1]
|
||||
else
|
||||
return nil, "invalid-table"
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue