util.json: Fixed handling of truncated JSON.

This commit is contained in:
Waqas Hussain 2011-06-02 05:36:15 +05:00
parent 0ffdcd1dd7
commit e1ba26dafe

View file

@ -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;