mirror of
https://github.com/DaveGamble/cJSON.git
synced 2023-08-10 21:13:26 +03:00
fix memory leak in cJSON_Duplicate
This commit is contained in:
parent
e1eb06fae0
commit
5b4420298f
2
cJSON.c
2
cJSON.c
@ -2153,7 +2153,7 @@ cJSON *cJSON_Duplicate(const cJSON *item, cjbool recurse)
|
||||
}
|
||||
if (item->string)
|
||||
{
|
||||
newitem->string = cJSON_strdup(item->string);
|
||||
newitem->string = (item->type&cJSON_StringIsConst) ? item->string : cJSON_strdup(item->string);
|
||||
if (!newitem->string)
|
||||
{
|
||||
cJSON_Delete(newitem);
|
||||
|
Loading…
x
Reference in New Issue
Block a user