mirror of
https://github.com/torvalds/linux.git
synced 2024-11-28 07:01:32 +00:00
b43: debugfs SHM read buffer overrun fix
Fix possible buffer overrun. Signed-off-by: Michael Buesch <mb@bu3sch.de> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
80fda03fc8
commit
30c4ae4231
@ -128,7 +128,7 @@ static ssize_t shm_read_file(struct b43_wldev *dev,
|
||||
__le16 *le16buf = (__le16 *)buf;
|
||||
|
||||
for (i = 0; i < 0x1000; i++) {
|
||||
if (bufsize <= 0)
|
||||
if (bufsize < sizeof(tmp))
|
||||
break;
|
||||
tmp = b43_shm_read16(dev, B43_SHM_SHARED, 2 * i);
|
||||
le16buf[i] = cpu_to_le16(tmp);
|
||||
|
Loading…
Reference in New Issue
Block a user