From: Markus Armbruster Date: Wed, 28 May 2014 09:17:00 +0000 (+0200) Subject: qemu-io: Don't print NULL when open without non-option arg fails X-Git-Tag: pull-nvme-20200902~4772^2~10 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=543f7bef1353be4b30543aa1888048a7b6abb2e9;p=qemu-nvme.git qemu-io: Don't print NULL when open without non-option arg fails Reproducer: "open -o a=b". Broken in commit fd0fee3. Signed-off-by: Markus Armbruster Signed-off-by: Kevin Wolf --- diff --git a/qemu-io.c b/qemu-io.c index f63e771d98..795cf46c6e 100644 --- a/qemu-io.c +++ b/qemu-io.c @@ -62,7 +62,8 @@ static int openfile(char *name, int flags, int growable, QDict *opts) if (bdrv_open(&qemuio_bs, name, NULL, opts, flags | BDRV_O_PROTOCOL, NULL, &local_err)) { - fprintf(stderr, "%s: can't open device %s: %s\n", progname, name, + fprintf(stderr, "%s: can't open%s%s: %s\n", progname, + name ? " device " : "", name ?: "", error_get_pretty(local_err)); error_free(local_err); return 1; @@ -73,7 +74,8 @@ static int openfile(char *name, int flags, int growable, QDict *opts) if (bdrv_open(&qemuio_bs, name, NULL, opts, flags, NULL, &local_err) < 0) { - fprintf(stderr, "%s: can't open device %s: %s\n", progname, name, + fprintf(stderr, "%s: can't open%s%s: %s\n", progname, + name ? " device " : "", name ?: "", error_get_pretty(local_err)); error_free(local_err); bdrv_unref(qemuio_bs);