summaryrefslogtreecommitdiffstats
path: root/qobject
diff options
context:
space:
mode:
authorPaolo Bonzini2014-06-13 10:13:02 +0200
committerLuiz Capitulino2014-06-23 17:01:24 +0200
commitd59323343825d14b6fc2d0f14bc5020b634150fe (patch)
treef33d62106609bb297fe7b4a58a4b08d435c6a2b8 /qobject
parentqapi: Suppress unwanted space between type and identifier (diff)
downloadqemu-d59323343825d14b6fc2d0f14bc5020b634150fe.tar.gz
qemu-d59323343825d14b6fc2d0f14bc5020b634150fe.tar.xz
qemu-d59323343825d14b6fc2d0f14bc5020b634150fe.zip
json-lexer: fix escaped backslash in single-quoted string
This made the lexer wait for a closing *double* quote. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Amos Kong <akong@redhat.com> Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'qobject')
-rw-r--r--qobject/json-lexer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/qobject/json-lexer.c b/qobject/json-lexer.c
index 440df60392..b19623e229 100644
--- a/qobject/json-lexer.c
+++ b/qobject/json-lexer.c
@@ -138,8 +138,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,
['\''] = IN_SQ_STRING,
['\"'] = IN_SQ_STRING,
['u'] = IN_SQ_UCODE0,