From patchwork Sun Nov 15 18:18:18 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [6/8] Fix qemu_free use in scsi-generic.c Date: Sun, 15 Nov 2009 08:18:18 -0000 From: Jean-Christophe DUBOIS X-Patchwork-Id: 38468 Message-Id: <1258309100-29591-6-git-send-email-jcd@tribudubois.net> To: qemu-devel@nongnu.org Cc: Jean-Christophe DUBOIS scsi-generic.c is using free() instead of qemu_free(). Fix it. Signed-off-by: Jean-Christophe DUBOIS --- hw/scsi-generic.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/scsi-generic.c b/hw/scsi-generic.c index 92ef771..cf56ea0 100644 --- a/hw/scsi-generic.c +++ b/hw/scsi-generic.c @@ -561,7 +561,7 @@ static int32_t scsi_send_command(SCSIDevice *d, uint32_t tag, if (len == 0) { if (r->buf != NULL) - free(r->buf); + qemu_free(r->buf); r->buflen = 0; r->buf = NULL; ret = execute_command(s->dinfo->bdrv, r, SG_DXFER_NONE, scsi_command_complete); @@ -574,7 +574,7 @@ static int32_t scsi_send_command(SCSIDevice *d, uint32_t tag, if (r->buflen != len) { if (r->buf != NULL) - free(r->buf); + qemu_free(r->buf); r->buf = qemu_malloc(len); r->buflen = len; }