[SCSI] hptiop: fix sense_buffer access bug
[deliverable/linux.git] / drivers / scsi / hptiop.c
index e7b2f3575ce99466c1ddf50991744205b4d0c0fa..890f44fa0e1a96fd3db3ee4ee95d17fc58f74647 100644 (file)
@@ -573,7 +573,7 @@ static void hptiop_finish_scsi_req(struct hptiop_hba *hba, u32 tag,
                scsi_set_resid(scp,
                        scsi_bufflen(scp) - le32_to_cpu(req->dataxfer_length));
                scp->result = SAM_STAT_CHECK_CONDITION;
-               memcpy(&scp->sense_buffer, &req->sg_list,
+               memcpy(scp->sense_buffer, &req->sg_list,
                                min_t(size_t, SCSI_SENSE_BUFFERSIZE,
                                        le32_to_cpu(req->dataxfer_length)));
                break;
This page took 0.026111 seconds and 5 git commands to generate.