mirror of
https://github.com/lm-sensors/lm-sensors
synced 2025-08-31 06:15:15 +00:00
Fix a memory leak on error in raw print mode.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@4726 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
@@ -42,12 +42,10 @@ void print_chip_raw(const sensors_chip_name *name)
|
||||
continue;
|
||||
}
|
||||
if (data->mode & SENSORS_MODE_R) {
|
||||
if (sensors_get_value(name, data->number, &val)) {
|
||||
if (sensors_get_value(name, data->number, &val))
|
||||
printf("ERROR: Can't get feature `%s' data!\n",
|
||||
data->name);
|
||||
continue;
|
||||
}
|
||||
if (data->mapping != SENSORS_NO_MAPPING)
|
||||
else if (data->mapping != SENSORS_NO_MAPPING)
|
||||
printf(" %s: %.2f\n", label, val);
|
||||
else
|
||||
printf("%s: %.2f (%s)\n", label, val,
|
||||
|
Reference in New Issue
Block a user