From: Bruce Rogers Date: Thu, 13 May 2010 21:14:33 +0000 (-0600) Subject: use qemu_free() instead of free() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=af474591e5521978194ee099497202c6818f2359;p=qemu.git use qemu_free() instead of free() There is a call to free() where qemu_free() should instead be used. Signed-off-by: Bruce Rogers Signed-off-by: Kevin Wolf --- diff --git a/block.c b/block.c index c134c2bcb5..96ef1b1955 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; }