cJSON_Utils: Fix case sensitivity handling when adding to object

This commit is contained in:
Max Bruckner 2017-06-14 17:45:44 +02:00
parent 9abe75e072
commit b9cc911831
1 changed files with 8 additions and 1 deletions

View File

@ -943,7 +943,14 @@ static int apply_patch(cJSON *object, const cJSON *patch, const cJSON_bool case_
}
else if (cJSON_IsObject(parent))
{
cJSON_DeleteItemFromObject(parent, (char*)child_pointer);
if (case_sensitive)
{
cJSON_DeleteItemFromObjectCaseSensitive(parent, (char*)child_pointer);
}
else
{
cJSON_DeleteItemFromObject(parent, (char*)child_pointer);
}
cJSON_AddItemToObject(parent, (char*)child_pointer, value);
value = NULL;
}