From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=44984 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OEqcL-0002Ix-G2 for qemu-devel@nongnu.org; Wed, 19 May 2010 17:15:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OEqcJ-0007C2-GK for qemu-devel@nongnu.org; Wed, 19 May 2010 17:15:53 -0400 Received: from mx1.redhat.com ([209.132.183.28]:29281) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OEqcI-0007Bs-Et for qemu-devel@nongnu.org; Wed, 19 May 2010 17:15:51 -0400 From: Luiz Capitulino Date: Wed, 19 May 2010 18:15:29 -0300 Message-Id: <1274303733-3700-3-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1274303733-3700-1-git-send-email-lcapitulino@redhat.com> References: <1274303733-3700-1-git-send-email-lcapitulino@redhat.com> Subject: [Qemu-devel] [PATCH 2/6] json-lexer: Handle missing escapes List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: aliguori@us.ibm.com Cc: qemu-devel@nongnu.org The JSON escape sequence "\/" and "\\" are valid and should be handled. Signed-off-by: Luiz Capitulino --- 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, -- 1.7.1.86.g0e460