diff options
author | Arnd Bergmann <arnd@arndb.de> | 2017-03-23 11:03:11 -0400 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2017-03-23 15:01:57 -0400 |
commit | a2125d02443e9a4e68bcfd9f8004fa23239e8329 (patch) | |
tree | 7793a248f25e75ad5795439013c35cb64622d0f4 | |
parent | a5023a99393dab276069cd60dad3e61d57720fda (diff) |
hwmon: (asus_atk0110) fix uninitialized data access
The latest gcc-7 snapshot adds a warning to point out that when
atk_read_value_old or atk_read_value_new fails, we copy
uninitialized data into sensor->cached_value:
drivers/hwmon/asus_atk0110.c: In function 'atk_input_show':
drivers/hwmon/asus_atk0110.c:651:26: error: 'value' may be used uninitialized in this function [-Werror=maybe-uninitialized]
Adding an error check avoids this. All versions of the driver
are affected.
Fixes: 2c03d07ad54d ("hwmon: Add Asus ATK0110 support")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Luca Tettamanti <kronos.it@gmail.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
-rw-r--r-- | drivers/hwmon/asus_atk0110.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/hwmon/asus_atk0110.c b/drivers/hwmon/asus_atk0110.c index cccef87963e0..975c43d446f8 100644 --- a/drivers/hwmon/asus_atk0110.c +++ b/drivers/hwmon/asus_atk0110.c | |||
@@ -646,6 +646,9 @@ static int atk_read_value(struct atk_sensor_data *sensor, u64 *value) | |||
646 | else | 646 | else |
647 | err = atk_read_value_new(sensor, value); | 647 | err = atk_read_value_new(sensor, value); |
648 | 648 | ||
649 | if (err) | ||
650 | return err; | ||
651 | |||
649 | sensor->is_valid = true; | 652 | sensor->is_valid = true; |
650 | sensor->last_updated = jiffies; | 653 | sensor->last_updated = jiffies; |
651 | sensor->cached_value = *value; | 654 | sensor->cached_value = *value; |