From patchwork Fri Jun 11 19:58:08 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luiz Capitulino X-Patchwork-Id: 55359 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 9ECCCB6ED0 for ; Sat, 12 Jun 2010 06:07:06 +1000 (EST) Received: from localhost ([127.0.0.1]:51154 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ONAVK-0000kr-HO for incoming@patchwork.ozlabs.org; Fri, 11 Jun 2010 16:07:02 -0400 Received: from [140.186.70.92] (port=49259 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ONAN1-0004cq-8l for qemu-devel@nongnu.org; Fri, 11 Jun 2010 15:58:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1ONAN0-0004PF-4b for qemu-devel@nongnu.org; Fri, 11 Jun 2010 15:58:27 -0400 Received: from mx1.redhat.com ([209.132.183.28]:39083) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1ONAMz-0004Oi-Qn for qemu-devel@nongnu.org; Fri, 11 Jun 2010 15:58:26 -0400 Received: from int-mx03.intmail.prod.int.phx2.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.16]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o5BJwOSi023038 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 11 Jun 2010 15:58:25 -0400 Received: from localhost (dhcp-32-227.gru.redhat.com [10.96.32.227]) by int-mx03.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o5BJwNJT011697; Fri, 11 Jun 2010 15:58:24 -0400 From: Luiz Capitulino To: aliguori@us.ibm.com Date: Fri, 11 Jun 2010 16:58:08 -0300 Message-Id: <1276286295-17601-4-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1276286295-17601-1-git-send-email-lcapitulino@redhat.com> References: <1276286295-17601-1-git-send-email-lcapitulino@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.16 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. Cc: qemu-devel@nongnu.org Subject: [Qemu-devel] [PATCH 03/10] qjson: Handle "\f" X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org It's valid JSON and should be handled. Signed-off-by: Luiz Capitulino --- json-parser.c | 4 ++++ qjson.c | 3 +++ 2 files changed, 7 insertions(+), 0 deletions(-) diff --git a/json-parser.c b/json-parser.c index b55d763..83212bc 100644 --- a/json-parser.c +++ b/json-parser.c @@ -206,6 +206,10 @@ static QString *qstring_from_escaped_str(JSONParserContext *ctxt, QObject *token qstring_append(str, "\b"); ptr++; break; + case 'f': + qstring_append(str, "\f"); + ptr++; + break; case 'n': qstring_append(str, "\n"); ptr++; diff --git a/qjson.c b/qjson.c index 483c667..e4ee433 100644 --- a/qjson.c +++ b/qjson.c @@ -158,6 +158,9 @@ static void to_json(const QObject *obj, QString *str) case '\b': qstring_append(str, "\\b"); break; + case '\f': + qstring_append(str, "\\f"); + break; case '\n': qstring_append(str, "\\n"); break;