mirror of
https://github.com/DaveGamble/cJSON.git
synced 2023-08-10 21:13:26 +03:00
another compare_strings fix
This commit is contained in:
parent
eb017abe72
commit
30906a01c0
@ -1218,7 +1218,7 @@ CJSON_PUBLIC(cJSON *) cJSONUtils_GenerateMergePatch(cJSON * const from, cJSON *
|
||||
{
|
||||
if (to_child != NULL)
|
||||
{
|
||||
diff = compare_strings((unsigned char*)from_child->string, (unsigned char*)to_child->string, true);
|
||||
diff = strcmp(from_child->string, to_child->string);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user