mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.json: Fixed handling of truncated JSON.
This commit is contained in:
parent
0ffdcd1dd7
commit
e1ba26dafe
1 changed files with 2 additions and 0 deletions
|
@ -134,12 +134,14 @@ end
|
|||
|
||||
|
||||
function json.decode(json)
|
||||
json = json.." "; -- appending a space ensures valid json wouldn't touch EOF
|
||||
local pos = 1;
|
||||
local current = {};
|
||||
local stack = {};
|
||||
local ch, peek;
|
||||
local function next()
|
||||
ch = json:sub(pos, pos);
|
||||
if ch == "" then error("Unexpected EOF"); end
|
||||
pos = pos+1;
|
||||
peek = json:sub(pos, pos);
|
||||
return ch;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue