use qemu_free() instead of free()

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

Signed-off-by: Bruce Rogers <brogers@novell.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
Bruce Rogers 2010-05-13 15:14:33 -06:00 committed by Kevin Wolf
parent f21dc3a465
commit af474591e5
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}