improve compare_double

This commit is contained in:
Alanscut 2019-12-09 10:36:45 +08:00
parent 69bc9ccc20
commit 4e3335618f
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ static int compare_strings(const unsigned char *string1, const unsigned char *st
/* securely comparison of floating-point variables */
static cJSON_bool compare_double(double a, double b)
{
return (fabs(a - b) <= a * CJSON_DOUBLE_PRECISION);
return (fabs(a - b) <= CJSON_DOUBLE_PRECISION);
}