From patchwork Wed May 19 21:15:30 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luiz Capitulino X-Patchwork-Id: 53027 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 BE9B0B7D2F for ; Thu, 20 May 2010 07:22:13 +1000 (EST) Received: from localhost ([127.0.0.1]:42956 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OEqiR-000625-0D for incoming@patchwork.ozlabs.org; Wed, 19 May 2010 17:22:11 -0400 Received: from [140.186.70.92] (port=44995 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OEqcN-0002Jc-5k for qemu-devel@nongnu.org; Wed, 19 May 2010 17:15:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OEqcL-0007CM-CU for qemu-devel@nongnu.org; Wed, 19 May 2010 17:15:55 -0400 Received: from mx1.redhat.com ([209.132.183.28]:27582) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OEqcK-0007CB-CB for qemu-devel@nongnu.org; Wed, 19 May 2010 17:15:53 -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 o4JLFp7O003481 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 19 May 2010 17:15:51 -0400 Received: from localhost (vpn-8-1.rdu.redhat.com [10.11.8.1]) by int-mx03.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o4JLFnTA032514; Wed, 19 May 2010 17:15:50 -0400 From: Luiz Capitulino To: aliguori@us.ibm.com Date: Wed, 19 May 2010 18:15:30 -0300 Message-Id: <1274303733-3700-4-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> 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 3/6] 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;