diff options
Diffstat (limited to 'src/utils/json.c')
-rw-r--r-- | src/utils/json.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/utils/json.c b/src/utils/json.c index b9130d3a65ab..b64433959ff7 100644 --- a/src/utils/json.c +++ b/src/utils/json.c @@ -103,6 +103,11 @@ static char * json_parse_string(const char **json_pos, const char *end) return str; case '\\': pos++; + if (pos >= end) { + wpa_printf(MSG_DEBUG, + "JSON: Truncated \\ escape"); + goto fail; + } switch (*pos) { case '"': case '\\': @@ -165,6 +170,8 @@ static int json_parse_number(const char **json_pos, const char *end, break; } } + if (pos == end) + pos--; if (pos < *json_pos) return -1; len = pos - *json_pos + 1; |