Utils: InplaceDecodePointerString: Check for NULL

This commit is contained in:
Max Bruckner 2017-01-30 19:29:52 +01:00
parent c49ffbfba8
commit a2309a509d
1 changed files with 5 additions and 0 deletions

View File

@ -208,6 +208,11 @@ cJSON *cJSONUtils_GetPointer(cJSON *object, const char *pointer)
static void cJSONUtils_InplaceDecodePointerString(char *string)
{
char *s2 = string;
if (string == NULL) {
return;
}
for (; *string; s2++, string++)
{
*s2 = (*string != '~')