mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 08:42:39 +01:00 
			
		
		
		
	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) | ||||
| : JsonObjectBase(json, tokens) | ||||
| { | ||||
| 	if (tokens[0].type != JSMN_ARRAY) | ||||
| 	if (tokens == 0 || tokens[0].type != JSMN_ARRAY) | ||||
| 		makeInvalid(); | ||||
| } | ||||
|  | ||||
|   | ||||
| @@ -11,7 +11,7 @@ | ||||
| JsonHashTable::JsonHashTable(char* json, jsmntok_t* tokens) | ||||
| : JsonObjectBase(json, tokens) | ||||
| { | ||||
| 	if (tokens[0].type != JSMN_OBJECT) | ||||
| 	if (tokens == 0 || tokens[0].type != JSMN_OBJECT) | ||||
| 		makeInvalid(); | ||||
| } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user