summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/nxt_conf.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/nxt_conf.c b/src/nxt_conf.c
index 7f09dac9..1aca0a7e 100644
--- a/src/nxt_conf.c
+++ b/src/nxt_conf.c
@@ -2142,7 +2142,9 @@ nxt_conf_json_parse_number(nxt_mp_t *mp, nxt_conf_value_t *value, u_char *start,
num = nxt_strtod(value->u.number, &end);
- if (nxt_slow_path(nxt_errno == NXT_ERANGE || fabs(num) > NXT_INT64_T_MAX)) {
+ if (nxt_slow_path(nxt_errno == NXT_ERANGE
+ || fabs(num) > (double) NXT_INT64_T_MAX))
+ {
nxt_conf_json_parse_error(error, start,
"The number is out of representable range. Such JSON number "
"value is not supported."