sim-card
/
qemu
Archived
10
0
Fork 0

block: Release allocated options after bdrv_open

They aren't used afterwards nor supposed to be stored by a bdrv_create
handler.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
Jan Kiszka 2010-04-29 18:24:50 +02:00 committed by Kevin Wolf
parent cc60e327c0
commit d748768c09
1 changed files with 1 additions and 0 deletions

View File

@ -540,6 +540,7 @@ int bdrv_open(BlockDriverState *bs, const char *filename, int flags,
}
ret = bdrv_create(bdrv_qcow2, tmp_filename, options);
free_option_parameters(options);
if (ret < 0) {
return ret;
}