diff options
Diffstat (limited to 'block/parallels.c')
-rw-r--r-- | block/parallels.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/block/parallels.c b/block/parallels.c index ac94dfb497..b2ec09f7e6 100644 --- a/block/parallels.c +++ b/block/parallels.c @@ -581,6 +581,12 @@ static int parallels_open(BlockDriverState *bs, QDict *options, int flags, Error *local_err = NULL; char *buf; + bs->file = bdrv_open_child(NULL, options, "file", bs, &child_file, + false, errp); + if (!bs->file) { + return -EINVAL; + } + ret = bdrv_pread(bs->file, 0, &ph, sizeof(ph)); if (ret < 0) { goto fail; |