reformatting: cJSON_strdup
This commit is contained in:
8
cJSON.c
8
cJSON.c
@@ -70,8 +70,12 @@ static char* cJSON_strdup(const char* str)
|
|||||||
char* copy;
|
char* copy;
|
||||||
|
|
||||||
len = strlen(str) + 1;
|
len = strlen(str) + 1;
|
||||||
if (!(copy = (char*)cJSON_malloc(len))) return 0;
|
if (!(copy = (char*)cJSON_malloc(len)))
|
||||||
memcpy(copy,str,len);
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
memcpy(copy, str, len);
|
||||||
|
|
||||||
return copy;
|
return copy;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user