From: Max Reitz Date: Tue, 2 Dec 2014 17:32:43 +0000 (+0100) Subject: block/vvfat: qcow driver may not be found X-Git-Tag: qemu-xen-4.6.0-rc1~34^2~52 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=1961d1c3474aa4d957f5eff4d122908250089fdb;p=qemu-upstream-unstable.git block/vvfat: qcow driver may not be found Although virtually impossible right now, bdrv_find_format("qcow") may fail. The vvfat block driver should heed that case. Cc: qemu-stable@nongnu.org Signed-off-by: Max Reitz Reviewed-by: Kevin Wolf Signed-off-by: Kevin Wolf (cherry picked from commit 1bcb15cf776a57e8963072c1919a59a90aea8e94) Signed-off-by: Michael Roth --- diff --git a/block/vvfat.c b/block/vvfat.c index cefe3a4f7..e34a78969 100644 --- a/block/vvfat.c +++ b/block/vvfat.c @@ -2917,6 +2917,12 @@ static int enable_write_target(BDRVVVFATState *s, Error **errp) } bdrv_qcow = bdrv_find_format("qcow"); + if (!bdrv_qcow) { + error_setg(errp, "Failed to locate qcow driver"); + ret = -ENOENT; + goto err; + } + opts = qemu_opts_create(bdrv_qcow->create_opts, NULL, 0, &error_abort); qemu_opt_set_number(opts, BLOCK_OPT_SIZE, s->sector_count * 512); qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, "fat:");