mirror of
https://github.com/DaveGamble/cJSON.git
synced 2023-08-10 21:13:26 +03:00
fix configurable compare_stirings
This commit is contained in:
parent
2616db9e92
commit
1d85450883
@ -437,7 +437,7 @@ static cJSON_bool compare_json(cJSON *a, cJSON *b)
|
|||||||
|
|
||||||
case cJSON_String:
|
case cJSON_String:
|
||||||
/* string mismatch. */
|
/* string mismatch. */
|
||||||
if (compare_strings((unsigned char*)a->valuestring, (unsigned char*)b->valuestring, true) != 0)
|
if (strcmp(a->valuestring, b->valuestring) != 0)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user