From: Bruce Rogers Date: Thu, 13 May 2010 21:14:33 +0000 (-0600) Subject: use qemu_free() instead of free() X-Git-Tag: v0.13.0-rc0~517^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=af474591e5521978194ee099497202c6818f2359;p=thirdparty%2Fqemu.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 c134c2bcb51..96ef1b1955d 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; }