diff options
author | Peter Maydell | 2011-08-12 18:49:36 +0200 |
---|---|---|
committer | Blue Swirl | 2011-08-14 21:34:25 +0200 |
commit | 3b6ffe50300f13240e1b46420ad05da1116df410 (patch) | |
tree | ccb35ff37631ecef6ce2b2dab340f1e075c31bbb /hw/scsi-bus.c | |
parent | qapi: fix build issue due to missing newline in generated header (diff) | |
download | qemu-3b6ffe50300f13240e1b46420ad05da1116df410.tar.gz qemu-3b6ffe50300f13240e1b46420ad05da1116df410.tar.xz qemu-3b6ffe50300f13240e1b46420ad05da1116df410.zip |
hw/scsi-bus.c: Fix use of uninitialised variable
Don't use req before it has been initialised in scsi_req_new().
This fixes a compile failure due to gcc complaining about this.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/scsi-bus.c')
-rw-r--r-- | hw/scsi-bus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/scsi-bus.c b/hw/scsi-bus.c index f2af6cdb4d..559d5a4708 100644 --- a/hw/scsi-bus.c +++ b/hw/scsi-bus.c @@ -372,7 +372,7 @@ SCSIRequest *scsi_req_new(SCSIDevice *d, uint32_t tag, uint32_t lun, } else { trace_scsi_req_parsed(d->id, lun, tag, buf[0], cmd.mode, cmd.xfer); - if (req->cmd.lba != -1) { + if (cmd.lba != -1) { trace_scsi_req_parsed_lba(d->id, lun, tag, buf[0], cmd.lba); } |