mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-23 11:39:53 +00:00
block: Fix leak of ignore_children in error path
Reported-by: Max Reitz <mreitz@redhat.com> Signed-off-by: Fam Zheng <famz@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Alberto Garcia <berto@igalia.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
4f8e3a1f22
commit
2c860e797a
2
block.c
2
block.c
@ -3679,12 +3679,12 @@ int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
|
|||||||
GSList *ignore_children = g_slist_prepend(NULL, c);
|
GSList *ignore_children = g_slist_prepend(NULL, c);
|
||||||
bdrv_check_update_perm(base, NULL, c->perm, c->shared_perm,
|
bdrv_check_update_perm(base, NULL, c->perm, c->shared_perm,
|
||||||
ignore_children, &local_err);
|
ignore_children, &local_err);
|
||||||
|
g_slist_free(ignore_children);
|
||||||
if (local_err) {
|
if (local_err) {
|
||||||
ret = -EPERM;
|
ret = -EPERM;
|
||||||
error_report_err(local_err);
|
error_report_err(local_err);
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
g_slist_free(ignore_children);
|
|
||||||
|
|
||||||
/* If so, update the backing file path in the image file */
|
/* If so, update the backing file path in the image file */
|
||||||
if (c->role->update_filename) {
|
if (c->role->update_filename) {
|
||||||
|
Loading…
Reference in New Issue
Block a user