mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 16:14:11 +01:00 
			
		
		
		
	Fixed bugs in when token is not found
This commit is contained in:
		| @@ -39,21 +39,21 @@ bool JsonObjectBase::getBoolFromToken(jsmntok_t* token) | ||||
|  | ||||
| double JsonObjectBase::getDoubleFromToken(jsmntok_t* token) | ||||
| { | ||||
| 	if (token->type != JSMN_PRIMITIVE) return 0; | ||||
| 	if (token == 0 || token->type != JSMN_PRIMITIVE) return 0; | ||||
|  | ||||
| 	return strtod(json + token->start, 0); | ||||
| } | ||||
|  | ||||
| long JsonObjectBase::getLongFromToken(jsmntok_t* token) | ||||
| { | ||||
| 	if (token->type != JSMN_PRIMITIVE) return 0; | ||||
| 	if (token == 0 || token->type != JSMN_PRIMITIVE) return 0; | ||||
|  | ||||
| 	return strtol(json + token->start, 0, 0); | ||||
| } | ||||
|  | ||||
| char* JsonObjectBase::getStringFromToken(jsmntok_t* token) | ||||
| { | ||||
| 	if (token->type != JSMN_PRIMITIVE && token->type != JSMN_STRING) | ||||
| 	if (token == 0 || token->type != JSMN_PRIMITIVE && token->type != JSMN_STRING) | ||||
| 		return 0; | ||||
|  | ||||
| 	// add null terminator to the string | ||||
|   | ||||
		Reference in New Issue
	
	Block a user