cJSON
cJSON copied to clipboard
fix positive value with '+' prefix crash in parse_value()
without this fix, the program will crash with the following test:
assert_parse_value("+1.5", cJSON_Number);
Note that + is not a valid number prefix according to the JSON spec, so this PR would make it non-compliant:

Got it, closing this PR.