diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-04-23 05:51:10 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-04-27 13:19:55 -0400 |
commit | 1377d8dd7e1b5526637958aabb5427bbee5a68d7 (patch) | |
tree | ed545c51f083c8470830b008ea71fd5f2454b643 /drivers/scsi/FlashPoint.c | |
parent | 2b48aed182c65b3387b076364ab286c445aa4a93 (diff) |
[SCSI] FlashPoint: fix off-by-one errors
This patch fixes off-by-one errors in error checks (the variables are
used as array indexes for arrays with MAX_SCSI_TAR resp. MAX_LUN
elements) spotted by the Coverity checker.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi/FlashPoint.c')
-rw-r--r-- | drivers/scsi/FlashPoint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/FlashPoint.c b/drivers/scsi/FlashPoint.c index b374e457e5e2..b898d382b7b0 100644 --- a/drivers/scsi/FlashPoint.c +++ b/drivers/scsi/FlashPoint.c | |||
@@ -1499,7 +1499,7 @@ static void FlashPoint_StartCCB(unsigned long pCurrCard, struct sccb *p_Sccb) | |||
1499 | thisCard = ((struct sccb_card *)pCurrCard)->cardIndex; | 1499 | thisCard = ((struct sccb_card *)pCurrCard)->cardIndex; |
1500 | ioport = ((struct sccb_card *)pCurrCard)->ioPort; | 1500 | ioport = ((struct sccb_card *)pCurrCard)->ioPort; |
1501 | 1501 | ||
1502 | if ((p_Sccb->TargID > MAX_SCSI_TAR) || (p_Sccb->Lun > MAX_LUN)) { | 1502 | if ((p_Sccb->TargID >= MAX_SCSI_TAR) || (p_Sccb->Lun >= MAX_LUN)) { |
1503 | 1503 | ||
1504 | p_Sccb->HostStatus = SCCB_COMPLETE; | 1504 | p_Sccb->HostStatus = SCCB_COMPLETE; |
1505 | p_Sccb->SccbStatus = SCCB_ERROR; | 1505 | p_Sccb->SccbStatus = SCCB_ERROR; |