LIBOMV-879: Fixed deserialization of nested arrays

git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@3463 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
Latif Khalifa
2010-10-30 05:20:49 +00:00
parent 1d3ee7537f
commit a02a3697da

View File

@@ -496,7 +496,7 @@ namespace LitJson
while (true) {
IJsonWrapper item = ReadValue (factory, reader);
if (reader.Token == JsonToken.ArrayEnd)
if (item == null && reader.Token == JsonToken.ArrayEnd)
break;
((IList) instance).Add (item);