From: Bruce Rogers <brog...@novell.com>

There is a call to free() where qemu_free() should instead be used.

Signed-off-by: Bruce Rogers <brog...@novell.com>
Signed-off-by: Kevin Wolf <kw...@redhat.com>
---
 block.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/block.c b/block.c
index c134c2b..96ef1b1 100644
--- a/block.c
+++ b/block.c
@@ -2075,7 +2075,7 @@ int bdrv_aio_multiwrite(BlockDriverState *bs, 
BlockRequest *reqs, int num_reqs)
     return 0;
 
 fail:
-    free(mcb);
+    qemu_free(mcb);
     return -1;
 }
 
-- 
1.6.6.1


Reply via email to