diff options
author | Jean-Christophe DUBOIS | 2009-11-15 19:18:18 +0100 |
---|---|---|
committer | Anthony Liguori | 2009-12-02 15:57:43 +0100 |
commit | e3c916e6807bc7e8277d8269a60c0256a36b62f7 (patch) | |
tree | 96468e9ac7d70d5d3ff40876023b291948fe089d /hw/scsi-generic.c | |
parent | Fix qemu_free use in nseries.c (diff) | |
download | qemu-e3c916e6807bc7e8277d8269a60c0256a36b62f7.tar.gz qemu-e3c916e6807bc7e8277d8269a60c0256a36b62f7.tar.xz qemu-e3c916e6807bc7e8277d8269a60c0256a36b62f7.zip |
Fix qemu_free use in scsi-generic.c
scsi-generic.c is using free() instead of qemu_free().
Fix it.
Signed-off-by: Jean-Christophe DUBOIS <jcd@tribudubois.net>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/scsi-generic.c')
-rw-r--r-- | 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 92ef7716b7..cf56ea0f2c 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; } |