From 1e1ea48d42e011b9bdd0d689d184e7cac4617b66 Mon Sep 17 00:00:00 2001 From: Stefan Hajnoczi Date: Wed, 21 Apr 2010 20:35:45 +0100 Subject: [PATCH] block: Free iovec arrays allocated by multiwrite_merge() A new iovec array is allocated when creating a merged write request. This patch ensures that the iovec array is deleted in addition to its qiov owner. Reported-by: Leszek Urbanski Signed-off-by: Stefan Hajnoczi Signed-off-by: Kevin Wolf --- block.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/block.c b/block.c index 12cf434af..7974215ea 100644 --- a/block.c +++ b/block.c @@ -1739,6 +1739,9 @@ static void multiwrite_user_cb(MultiwriteCB *mcb) for (i = 0; i < mcb->num_callbacks; i++) { mcb->callbacks[i].cb(mcb->callbacks[i].opaque, mcb->error); + if (mcb->callbacks[i].free_qiov) { + qemu_iovec_destroy(mcb->callbacks[i].free_qiov); + } qemu_free(mcb->callbacks[i].free_qiov); qemu_vfree(mcb->callbacks[i].free_buf); } -- 2.39.2