qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 2/6] json-lexer: Handle missing escapes


From: Anthony Liguori
Subject: Re: [Qemu-devel] [PATCH 2/6] json-lexer: Handle missing escapes
Date: Wed, 19 May 2010 16:44:47 -0500
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.5) Gecko/20091209 Fedora/3.0-4.fc12 Lightning/1.0pre Thunderbird/3.0

On 05/19/2010 04:15 PM, Luiz Capitulino wrote:
The JSON escape sequence "\/" and "\\" are valid and should be
handled.

Signed-off-by: Luiz Capitulino<address@hidden>

Good catch.

---
  json-lexer.c |    4 ++++
  1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/json-lexer.c b/json-lexer.c
index 0b145d1..5cc7e6c 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,




reply via email to

[Prev in Thread] Current Thread [Next in Thread]