FS-8160: properly handle malformed json when parsing json with \u at the end of a json string
This commit is contained in:
parent
79f158911e
commit
cf892528a1
|
@ -204,7 +204,7 @@ static const char *parse_string(cJSON *item,const char *str)
|
|||
break;
|
||||
default: *ptr2++=*ptr; break;
|
||||
}
|
||||
ptr++;
|
||||
if (*ptr) ptr++;
|
||||
}
|
||||
}
|
||||
*ptr2=0;
|
||||
|
|
|
@ -204,7 +204,7 @@ static const char *parse_string(cJSON *item,const char *str)
|
|||
break;
|
||||
default: *ptr2++=*ptr; break;
|
||||
}
|
||||
ptr++;
|
||||
if (*ptr) ptr++;
|
||||
}
|
||||
}
|
||||
*ptr2=0;
|
||||
|
|
|
@ -204,7 +204,7 @@ static const char *parse_string(cJSON *item,const char *str)
|
|||
break;
|
||||
default: *ptr2++=*ptr; break;
|
||||
}
|
||||
ptr++;
|
||||
if (*ptr) ptr++;
|
||||
}
|
||||
}
|
||||
*ptr2=0;
|
||||
|
|
Loading…
Reference in New Issue