qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 01/21] parallels: Set s->used_bmap to NULL in parallels_free_


From: Alexander Ivanov
Subject: Re: [PATCH 01/21] parallels: Set s->used_bmap to NULL in parallels_free_used_bitmap()
Date: Thu, 28 Dec 2023 10:53:23 +0100
User-agent: Mozilla Thunderbird

Sorry, incorrect patch set, please ignore.

On 12/28/23 10:41, Alexander Ivanov wrote:
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.

Signed-off-by: Alexander Ivanov <alexander.ivanov@virtuozzo.com>
Reviewed-by: Denis V. Lunev <den@openvz.org>
---
  block/parallels.c | 1 +
  1 file changed, 1 insertion(+)

diff --git a/block/parallels.c b/block/parallels.c
index 9205a0864f..072b1efd78 100644
--- a/block/parallels.c
+++ b/block/parallels.c
@@ -245,6 +245,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

--
Best regards,
Alexander Ivanov




reply via email to

[Prev in Thread] Current Thread [Next in Thread]