fix a possible dereference of null pointer

This commit is contained in:
Alanscut 2020-10-16 17:06:29 +08:00
parent 488169faca
commit 9bf4960cd5
1 changed files with 4 additions and 0 deletions

View File

@ -1406,6 +1406,10 @@ static cJSON *generate_merge_patch(cJSON * const from, cJSON * const to, const c
from_child = from->child;
to_child = to->child;
patch = cJSON_CreateObject();
if (patch == NULL)
{
return NULL;
}
while (from_child || to_child)
{
int diff;