mirror of https://github.com/xqemu/xqemu.git
qcow2: fix two memory leaks in qcow2_open error code path
Signed-off-by: Prasad Joshi <prasadjoshi.linux@gmail.com> Reviewed-by: Max Reitz <mreitz@redhat.com> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
This commit is contained in:
parent
4c7096607d
commit
c5a33ee9ee
|
@ -506,6 +506,7 @@ static int qcow2_open(BlockDriverState *bs, QDict *options, int flags,
|
||||||
s->incompatible_features &
|
s->incompatible_features &
|
||||||
~QCOW2_INCOMPAT_MASK);
|
~QCOW2_INCOMPAT_MASK);
|
||||||
ret = -ENOTSUP;
|
ret = -ENOTSUP;
|
||||||
|
g_free(feature_table);
|
||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -745,6 +746,9 @@ static int qcow2_open(BlockDriverState *bs, QDict *options, int flags,
|
||||||
if (s->l2_table_cache) {
|
if (s->l2_table_cache) {
|
||||||
qcow2_cache_destroy(bs, s->l2_table_cache);
|
qcow2_cache_destroy(bs, s->l2_table_cache);
|
||||||
}
|
}
|
||||||
|
if (s->refcount_block_cache) {
|
||||||
|
qcow2_cache_destroy(bs, s->refcount_block_cache);
|
||||||
|
}
|
||||||
g_free(s->cluster_cache);
|
g_free(s->cluster_cache);
|
||||||
qemu_vfree(s->cluster_data);
|
qemu_vfree(s->cluster_data);
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in New Issue