diff --git a/cJSON_Utils.c b/cJSON_Utils.c index 78c9b1d..bc4734f 100644 --- a/cJSON_Utils.c +++ b/cJSON_Utils.c @@ -437,7 +437,7 @@ static cJSON_bool compare_json(cJSON *a, cJSON *b) case cJSON_String: /* string mismatch. */ - if (compare_strings((unsigned char*)a->valuestring, (unsigned char*)b->valuestring, true) != 0) + if (strcmp(a->valuestring, b->valuestring) != 0) { return false; }