This patch fixes an array overrun spotted by the Coverity checker. Signed-off-by: Adrian Bunk <bunk@xxxxxxxxx> --- linux-2.6/drivers/scsi/psi240i.c.old 2006-11-06 15:18:08.000000000 +0100 +++ linux-2.6/drivers/scsi/psi240i.c 2006-11-06 15:18:43.000000000 +0100 @@ -328,7 +328,7 @@ static void Irq_Handler (int irq, void * pinquiryData->AdditionalLength = 35 - 4; // 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 + 1] = ((UCHAR *)identifyData.ModelNumber)[z]; - To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html