mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
pcmcia: do not try to store more than 4 version strings
... for struct pcmcia_device only provides for 4 anyway. Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
This commit is contained in:
parent
84897fc052
commit
c5e09528be
@ -583,7 +583,7 @@ static int pcmcia_device_query(struct pcmcia_device *p_dev)
|
||||
|
||||
if (!pccard_read_tuple(p_dev->socket, BIND_FN_ALL, CISTPL_VERS_1,
|
||||
vers1)) {
|
||||
for (i=0; i < vers1->ns; i++) {
|
||||
for (i = 0; i < min_t(unsigned int, 4, vers1->ns); i++) {
|
||||
char *tmp;
|
||||
unsigned int length;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user