aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Wolf <kwolf@redhat.com>2011-11-22 16:57:34 +0100
committerKevin Wolf <kwolf@redhat.com>2011-11-23 17:04:05 +0100
commit6ac5f3881fd9880f55e30c5f5bd9984d9d47fd62 (patch)
tree26d383f941d5f29b66b2966c04136d73d665e2cc
parent3397f0cb483b40785678d2328da584c8a35c358c (diff)
vdi: Fix memory leak
The block map is allocated in vdi_open, but was never freed. Signed-off-by: Kevin Wolf <kwolf@redhat.com>
-rw-r--r--block/vdi.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/block/vdi.c b/block/vdi.c
index 7dda5222e..02da6b44d 100644
--- a/block/vdi.c
+++ b/block/vdi.c
@@ -949,6 +949,9 @@ static int vdi_create(const char *filename, QEMUOptionParameter *options)
static void vdi_close(BlockDriverState *bs)
{
BDRVVdiState *s = bs->opaque;
+
+ g_free(s->bmap);
+
migrate_del_blocker(s->migration_blocker);
error_free(s->migration_blocker);
}