[PATCH v6 01/25] parallels: Set s->used_bmap to NULL in parallels_free_used_bitmap()
"Denis V. Lunev" <[email protected]>
| Newsgroups | gmane.comp.emulators.qemu,gmane.comp.emulators.qemu.block |
|---|---|
| Message-ID | <[email protected]> |
From: Alexander Ivanov <[email protected]> After used bitmap freeng s->used_bmap points to the freed memory. If we try to free used bitmap one more time it leads to double free error. Set s->used_bmap to NULL to exclude double free error. Cc: Stefan Hajnoczi <[email protected]> Signed-off-by: Alexander Ivanov <[email protected]> Reviewed-by: Denis V. Lunev <[email protected]> Signed-off-by: Denis V. Lunev <[email protected]> --- block/parallels.c | 1 + 1 file changed, 1 insertion(+) diff --git a/block/parallels.c b/block/parallels.c index 50748d1415..94692275c9 100644 --- a/block/parallels.c +++ b/block/parallels.c @@ -254,6 +254,7 @@ static void parallels_free_used_bitmap(BlockDriverState *bs) BDRVParallelsState *s = bs->opaque; s->used_bmap_size = 0; g_free(s->used_bmap); + s->used_bmap = NULL; } static int64_t coroutine_fn GRAPH_RDLOCK -- 2.53.0