Changeset

4169:1033729a2467

Merge with waqas
author Matthew Wild <mwild1@gmail.com>
date Thu, 24 Feb 2011 01:40:47 +0000
parents 4168:4919831b5b56 (current diff) 4147:7f119ebcf55f (diff)
children 4170:adcfd525f329
files
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/util/json.lua	Sat Feb 19 02:31:06 2011 +0000
+++ b/util/json.lua	Thu Feb 24 01:40:47 2011 +0000
@@ -268,7 +268,9 @@
 		return tonumber(s);
 	end
 	local function readmember(t)
+		skipstuff();
 		local k = readstring();
+		skipstuff();
 		checkandskip(":");
 		t[k] = readvalue();
 	end