blkverify: Fix leak of opts in blkverify_open

Signed-off-by: Fam Zheng <famz@redhat.com>
Reviewed-by: Benoît Canet <benoit.canet@nodalink.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
master
Fam Zheng 2014-08-28 13:56:11 +08:00 committed by Stefan Hajnoczi
parent 810f4f86b7
commit 3158593126
1 changed files with 1 additions and 0 deletions

View File

@ -158,6 +158,7 @@ static int blkverify_open(BlockDriverState *bs, QDict *options, int flags,
ret = 0;
fail:
qemu_opts_del(opts);
return ret;
}