From patchwork Wed Apr 8 18:16:28 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eduardo Habkost X-Patchwork-Id: 459410 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 026D01401DA for ; Thu, 9 Apr 2015 04:17:15 +1000 (AEST) Received: from localhost ([::1]:54234 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YfuXJ-0005hz-3j for incoming@patchwork.ozlabs.org; Wed, 08 Apr 2015 14:17:13 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34152) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YfuWt-0004qU-1b for qemu-devel@nongnu.org; Wed, 08 Apr 2015 14:16:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YfuWp-0005Kt-SO for qemu-devel@nongnu.org; Wed, 08 Apr 2015 14:16:46 -0400 Received: from mx1.redhat.com ([209.132.183.28]:51369) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YfuWp-0005Kh-K8 for qemu-devel@nongnu.org; Wed, 08 Apr 2015 14:16:43 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id t38IGhxk002800 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Wed, 8 Apr 2015 14:16:43 -0400 Received: from localhost (ovpn-113-76.phx2.redhat.com [10.3.113.76]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t38IGfhe021327; Wed, 8 Apr 2015 14:16:42 -0400 From: Eduardo Habkost To: qemu-devel@nongnu.org Date: Wed, 8 Apr 2015 15:16:28 -0300 Message-Id: <1428516988-6760-1-git-send-email-ehabkost@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: Paolo Bonzini , Gerd Hoffmann Subject: [Qemu-devel] [PATCH] qemu-config: Accept empty option values X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Currently it is impossible to set an option in a config file to an empty string, because the parser matches only lines containing non-empty strings between double-quotes. As sscanf() "[" conversion specifier only matches non-empty strings, add a special case for empty strings. Signed-off-by: Eduardo Habkost Reviewed-by: Eric Blake Acked-by: Paolo Bonzini --- util/qemu-config.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/util/qemu-config.c b/util/qemu-config.c index 2d32ce7..9f9577d 100644 --- a/util/qemu-config.c +++ b/util/qemu-config.c @@ -413,7 +413,8 @@ int qemu_config_parse(FILE *fp, QemuOptsList **lists, const char *fname) opts = qemu_opts_create(list, NULL, 0, &error_abort); continue; } - if (sscanf(line, " %63s = \"%1023[^\"]\"", arg, value) == 2) { + if (sscanf(line, " %63s = \"%1023[^\"]\"", arg, value) == 2 || + (value[0] = '\0', sscanf(line, " %63s = \"\"", arg) == 1)) { /* arg = value */ if (opts == NULL) { error_report("no group defined");