Commit 05052f7f authored by Adrian Bunk's avatar Adrian Bunk Committed by James Bottomley

[SCSI] psi240i.c: fix an array overrun

Fix an array overrun spotted by the Coverity checker.
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@SteelEye.com>
parent 107e716b
...@@ -328,7 +328,7 @@ static void Irq_Handler (int irq, void *dev_id) ...@@ -328,7 +328,7 @@ static void Irq_Handler (int irq, void *dev_id)
pinquiryData->AdditionalLength = 35 - 4; pinquiryData->AdditionalLength = 35 - 4;
// Fill in vendor identification fields. // Fill in vendor identification fields.
for ( z = 0; z < 20; z += 2 ) for ( z = 0; z < 8; z += 2 )
{ {
pinquiryData->VendorId[z] = ((UCHAR *)identifyData.ModelNumber)[z + 1]; pinquiryData->VendorId[z] = ((UCHAR *)identifyData.ModelNumber)[z + 1];
pinquiryData->VendorId[z + 1] = ((UCHAR *)identifyData.ModelNumber)[z]; pinquiryData->VendorId[z + 1] = ((UCHAR *)identifyData.ModelNumber)[z];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment