There is a call to free() where qemu_free() should instead be used. Signed-off-by: Bruce Rogers <brog...@novell.com>
diff --git a/block.c b/block.c index 48305b7..1a9d72d 100644 --- a/block.c +++ b/block.c @@ -2073,7 +2073,7 @@ int bdrv_aio_multiwrite(BlockDriverState *bs, BlockRequest *reqs, int num_reqs) return 0; fail: - free(mcb); + qemu_free(mcb); return -1; }