cJSON_Delete: Improve readability

This commit is contained in:
Max Bruckner 2017-03-25 14:09:26 +01:00
parent eb5000ba61
commit 6702037b68
1 changed files with 11 additions and 11 deletions

22
cJSON.c
View File

@ -167,26 +167,26 @@ static cJSON *cJSON_New_Item(const internal_hooks * const hooks)
} }
/* Delete a cJSON structure. */ /* Delete a cJSON structure. */
CJSON_PUBLIC(void) cJSON_Delete(cJSON *c) CJSON_PUBLIC(void) cJSON_Delete(cJSON *item)
{ {
cJSON *next = NULL; cJSON *next = NULL;
while (c) while (item != NULL)
{ {
next = c->next; next = item->next;
if (!(c->type & cJSON_IsReference) && c->child) if (!(item->type & cJSON_IsReference) && (item->child != NULL))
{ {
cJSON_Delete(c->child); cJSON_Delete(item->child);
} }
if (!(c->type & cJSON_IsReference) && c->valuestring) if (!(item->type & cJSON_IsReference) && (item->valuestring != NULL))
{ {
global_hooks.deallocate(c->valuestring); global_hooks.deallocate(item->valuestring);
} }
if (!(c->type & cJSON_StringIsConst) && c->string) if (!(item->type & cJSON_StringIsConst) && (item->string != NULL))
{ {
global_hooks.deallocate(c->string); global_hooks.deallocate(item->string);
} }
global_hooks.deallocate(c); global_hooks.deallocate(item);
c = next; item = next;
} }
} }