mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-15 19:42:12 +02:00
Test that now value can be added when all nodes are allocated
This commit is contained in:
@ -75,8 +75,11 @@ JsonNode* JsonObject::getOrCreateNodeAt(char const* key)
|
||||
JsonBuffer* buffer = _node->content.asObject.buffer;
|
||||
|
||||
JsonNode* newValueNode = buffer->createNode(JSON_UNDEFINED);
|
||||
if (!newValueNode) return 0;
|
||||
|
||||
JsonNode* newKeyNode = buffer->createNode(JSON_KEY);
|
||||
if (!newKeyNode) return 0;
|
||||
|
||||
newKeyNode->content.asKey.key = key;
|
||||
newKeyNode->content.asKey.value = newValueNode;
|
||||
|
||||
|
Reference in New Issue
Block a user