implement AddItemToObject using AddItemToObjectCS

This commit is contained in:
Max Bruckner 2017-02-15 21:46:24 +01:00
parent 57d105d498
commit cf862d0fed
1 changed files with 4 additions and 13 deletions

17
cJSON.c
View File

@ -1775,19 +1775,10 @@ void cJSON_AddItemToArray(cJSON *array, cJSON *item)
void cJSON_AddItemToObject(cJSON *object, const char *string, cJSON *item)
{
if (!item)
{
return;
}
/* free old key and set new one */
if (!(item->type & cJSON_StringIsConst) && item->string)
{
cJSON_free(item->string);
}
item->string = (char*)cJSON_strdup((const unsigned char*)string);
cJSON_AddItemToArray(object,item);
/* call cJSON_AddItemToObjectCS for code reuse */
cJSON_AddItemToObjectCS(object, (char*)cJSON_strdup((const unsigned char*)string), item);
/* remove cJSON_StringIsConst flag */
item->type &= ~cJSON_StringIsConst;
}
/* Add an item to an object with constant string as key */