2
0
mirror of https://github.com/lm-sensors/lm-sensors synced 2025-08-31 06:15:15 +00:00

Prevent a potential array overrun.

git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@4556 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
Jean Delvare
2007-07-05 16:19:51 +00:00
parent b998b35ecc
commit 83fe82736d

View File

@@ -70,7 +70,7 @@ static void sensors_get_available_features(const sensors_chip_name *name,
continue;
indx = type - first_val - 1;
if (indx >= size) {
if (indx < 0 || indx >= size) {
printf("ERROR: Bug in sensors: index out of bound");
return;
}