From 89a1c66dd0c396cda30a960e790817d28dc9a2de Mon Sep 17 00:00:00 2001 From: Valentin Bartenev Date: Tue, 21 Nov 2017 18:41:43 +0300 Subject: [PATCH] Fixed crash on invalid JSON number. --- src/nxt_conf.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/nxt_conf.c b/src/nxt_conf.c index d48eade3..872a62af 100644 --- a/src/nxt_conf.c +++ b/src/nxt_conf.c @@ -1052,6 +1052,10 @@ nxt_conf_json_parse_value(nxt_mp_t *mp, nxt_conf_value_t *value, u_char *start, if (nxt_fast_path((ch - '0') <= 9)) { p = nxt_conf_json_parse_number(mp, value, start, end, error); + if (nxt_slow_path(p == NULL)) { + return NULL; + } + if (p == end) { return end; }