forked from bblanchon/ArduinoJson
Fixed null pointer exception in JsonArray and JsonHashTable constructors
This commit is contained in:
@ -9,7 +9,7 @@
|
|||||||
JsonArray::JsonArray(char* json, jsmntok_t* tokens)
|
JsonArray::JsonArray(char* json, jsmntok_t* tokens)
|
||||||
: JsonObjectBase(json, tokens)
|
: JsonObjectBase(json, tokens)
|
||||||
{
|
{
|
||||||
if (tokens[0].type != JSMN_ARRAY)
|
if (tokens == 0 || tokens[0].type != JSMN_ARRAY)
|
||||||
makeInvalid();
|
makeInvalid();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
JsonHashTable::JsonHashTable(char* json, jsmntok_t* tokens)
|
JsonHashTable::JsonHashTable(char* json, jsmntok_t* tokens)
|
||||||
: JsonObjectBase(json, tokens)
|
: JsonObjectBase(json, tokens)
|
||||||
{
|
{
|
||||||
if (tokens[0].type != JSMN_OBJECT)
|
if (tokens == 0 || tokens[0].type != JSMN_OBJECT)
|
||||||
makeInvalid();
|
makeInvalid();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user