mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-14 17:14:09 +00:00
hwmon: fix array overruns in lm93.c
This fixes an array overflow bug. We have 4 pairs of min/max temperature limits, not 3. Signed-off-by: Hans J. Koch <hjk@linutronix.de> Acked-by: Jean Delvare <khali@linux-fr.org> Signed-off-by: Mark M. Hoffman <mhoffman@lightlink.com>
This commit is contained in:
parent
add77c64ca
commit
f08a34874f
@ -234,7 +234,7 @@ struct lm93_data {
|
||||
struct {
|
||||
u8 min;
|
||||
u8 max;
|
||||
} temp_lim[3];
|
||||
} temp_lim[4];
|
||||
|
||||
/* vin1 - vin16: low and high limits */
|
||||
struct {
|
||||
|
Loading…
x
Reference in New Issue
Block a user