mirror of
https://github.com/DaveGamble/cJSON.git
synced 2023-08-10 21:13:26 +03:00
reformatting: cJSON_Delete
This commit is contained in:
parent
55488f66f6
commit
46cfa68a2b
19
cJSON.c
19
cJSON.c
@ -111,12 +111,21 @@ void cJSON_Delete(cJSON *c)
|
|||||||
cJSON *next;
|
cJSON *next;
|
||||||
while (c)
|
while (c)
|
||||||
{
|
{
|
||||||
next=c->next;
|
next = c->next;
|
||||||
if (!(c->type&cJSON_IsReference) && c->child) cJSON_Delete(c->child);
|
if (!(c->type & cJSON_IsReference) && c->child)
|
||||||
if (!(c->type&cJSON_IsReference) && c->valuestring) cJSON_free(c->valuestring);
|
{
|
||||||
if (!(c->type&cJSON_StringIsConst) && c->string) cJSON_free(c->string);
|
cJSON_Delete(c->child);
|
||||||
|
}
|
||||||
|
if (!(c->type & cJSON_IsReference) && c->valuestring)
|
||||||
|
{
|
||||||
|
cJSON_free(c->valuestring);
|
||||||
|
}
|
||||||
|
if (!(c->type & cJSON_StringIsConst) && c->string)
|
||||||
|
{
|
||||||
|
cJSON_free(c->string);
|
||||||
|
}
|
||||||
cJSON_free(c);
|
cJSON_free(c);
|
||||||
c=next;
|
c = next;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user