mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
[SCSI] fix scsi_device_types overrun in scsi.c
this overrun was spotted by coverity (cid #1403). If type == ARRAY_SIZE(scsi_device_types), we are off by one. Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
This commit is contained in:
parent
7b75b990e3
commit
80c6e3c0b5
@ -128,7 +128,7 @@ const char * scsi_device_type(unsigned type)
|
|||||||
return "Well-known LUN ";
|
return "Well-known LUN ";
|
||||||
if (type == 0x1f)
|
if (type == 0x1f)
|
||||||
return "No Device ";
|
return "No Device ";
|
||||||
if (type > ARRAY_SIZE(scsi_device_types))
|
if (type >= ARRAY_SIZE(scsi_device_types))
|
||||||
return "Unknown ";
|
return "Unknown ";
|
||||||
return scsi_device_types[type];
|
return scsi_device_types[type];
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user