diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2010-05-19 16:57:28 -0300 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2010-06-11 15:25:14 -0300 |
commit | 1041ba7a14260b490f3062f428b014b415a23f38 (patch) | |
tree | 62662b085330afb6de75eac659b514ae7711cb24 /json-lexer.c | |
parent | 03308f6c2746a756a8404d00caa20f8f35248167 (diff) |
json-lexer: Handle missing escapes
The JSON escape sequence "\/" and "\\" are valid and should be
handled.
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'json-lexer.c')
-rw-r--r-- | json-lexer.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/json-lexer.c b/json-lexer.c index 0b145d125c..5cc7e6c9a9 100644 --- a/json-lexer.c +++ b/json-lexer.c @@ -97,6 +97,8 @@ static const uint8_t json_lexer[][256] = { ['n'] = IN_DQ_STRING, ['r'] = IN_DQ_STRING, ['t'] = IN_DQ_STRING, + ['/'] = IN_DQ_STRING, + ['\\'] = IN_DQ_STRING, ['\''] = IN_DQ_STRING, ['\"'] = IN_DQ_STRING, ['u'] = IN_DQ_UCODE0, @@ -134,6 +136,8 @@ static const uint8_t json_lexer[][256] = { ['n'] = IN_SQ_STRING, ['r'] = IN_SQ_STRING, ['t'] = IN_SQ_STRING, + ['/'] = IN_DQ_STRING, + ['\\'] = IN_DQ_STRING, ['\''] = IN_SQ_STRING, ['\"'] = IN_SQ_STRING, ['u'] = IN_SQ_UCODE0, |