From patchwork Tue Jan 15 16:48:31 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [15/15] block: Fix how mirror_run() frees its buffer Date: Tue, 15 Jan 2013 06:48:31 -0000 From: Stefan Hajnoczi X-Patchwork-Id: 212286 Message-Id: <1358268511-27061-16-git-send-email-stefanha@redhat.com> To: Cc: Anthony Liguori , Markus Armbruster , Stefan Hajnoczi From: Markus Armbruster It allocates with qemu_blockalign(), therefore it must free with qemu_vfree(), not g_free(). Signed-off-by: Markus Armbruster Signed-off-by: Stefan Hajnoczi --- block/mirror.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/block/mirror.c b/block/mirror.c index 8aeacbf..6180aa3 100644 --- a/block/mirror.c +++ b/block/mirror.c @@ -225,7 +225,7 @@ static void coroutine_fn mirror_run(void *opaque) } immediate_exit: - g_free(s->buf); + qemu_vfree(s->buf); bdrv_set_dirty_tracking(bs, false); bdrv_iostatus_disable(s->target); if (s->should_complete && ret == 0) {