]> Git Repo - qemu.git/commitdiff
block/vvfat: qcow driver may not be found
authorMax Reitz <[email protected]>
Tue, 2 Dec 2014 17:32:43 +0000 (18:32 +0100)
committerKevin Wolf <[email protected]>
Wed, 10 Dec 2014 09:31:19 +0000 (10:31 +0100)
Although virtually impossible right now, bdrv_find_format("qcow") may
fail. The vvfat block driver should heed that case.

Cc: [email protected]
Signed-off-by: Max Reitz <[email protected]>
Reviewed-by: Kevin Wolf <[email protected]>
Signed-off-by: Kevin Wolf <[email protected]>
block/vvfat.c

index cefe3a4f79c8653709771d4a47d61779fc307a4f..e34a78969960d855e0be8b32c84d8f4d1579e6ef 100644 (file)
@@ -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:");
This page took 0.028834 seconds and 4 git commands to generate.