util.json: Fixed a parse error caused by unexpected whitespace.

This commit is contained in:
Waqas Hussain 2011-02-19 06:47:32 +05:00
parent 404c107e3f
commit b40e6b9dd9

View file

@ -268,7 +268,9 @@ function json.decode(json)
return tonumber(s);
end
local function readmember(t)
skipstuff();
local k = readstring();
skipstuff();
checkandskip(":");
t[k] = readvalue();
end