Only allow minus at the begining of json numbers
This commit is contained in:
parent
c792986768
commit
db2db951c3
|
@ -257,7 +257,7 @@ void JsonUI::set_on_key(OnKeyCallback callback)
|
||||||
using JsonArray = Vector<Value>;
|
using JsonArray = Vector<Value>;
|
||||||
using JsonObject = HashMap<String, Value>;
|
using JsonObject = HashMap<String, Value>;
|
||||||
|
|
||||||
static bool is_digit_or_minus(char c) { return (c >= '0' and c <= '9') or c == '-'; }
|
static bool is_digit(char c) { return c >= '0' and c <= '9'; }
|
||||||
|
|
||||||
struct JsonResult { Value value; const char* new_pos; };
|
struct JsonResult { Value value; const char* new_pos; };
|
||||||
|
|
||||||
|
@ -266,10 +266,10 @@ JsonResult parse_json(const char* pos, const char* end)
|
||||||
if (not skip_while(pos, end, is_blank))
|
if (not skip_while(pos, end, is_blank))
|
||||||
return {};
|
return {};
|
||||||
|
|
||||||
if (is_digit_or_minus(*pos))
|
if (is_digit(*pos) or *pos == '-')
|
||||||
{
|
{
|
||||||
auto digit_end = pos;
|
auto digit_end = pos + 1;
|
||||||
skip_while(digit_end, end, is_digit_or_minus);
|
skip_while(digit_end, end, is_digit);
|
||||||
return { Value{str_to_int({pos, digit_end})}, digit_end };
|
return { Value{str_to_int({pos, digit_end})}, digit_end };
|
||||||
}
|
}
|
||||||
if (end - pos > 4 and StringView{pos, pos+4} == "true")
|
if (end - pos > 4 and StringView{pos, pos+4} == "true")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user