]> Git Repo - qemu.git/blobdiff - block/io.c
block: Use returned *file in bdrv_co_get_block_status
[qemu.git] / block / io.c
index ea040bef2280408bc971b80e2b12e6d946ba3618..343ff1f233909a7910d897457c0c59fb49d1d54f 100644 (file)
@@ -1554,13 +1554,13 @@ static int64_t coroutine_fn bdrv_co_get_block_status(BlockDriverState *bs,
         }
     }
 
-    if (bs->file &&
+    if (*file && *file != bs &&
         (ret & BDRV_BLOCK_DATA) && !(ret & BDRV_BLOCK_ZERO) &&
         (ret & BDRV_BLOCK_OFFSET_VALID)) {
         BlockDriverState *file2;
         int file_pnum;
 
-        ret2 = bdrv_co_get_block_status(bs->file->bs, ret >> BDRV_SECTOR_BITS,
+        ret2 = bdrv_co_get_block_status(*file, ret >> BDRV_SECTOR_BITS,
                                         *pnum, &file_pnum, &file2);
         if (ret2 >= 0) {
             /* Ignore errors.  This is just providing extra information, it
This page took 0.024239 seconds and 4 git commands to generate.