[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <aBtZBLNXxaYxMIMr@stanley.mountain>
Date: Wed, 7 May 2025 15:58:44 +0300
From: Dan Carpenter <dan.carpenter@...aro.org>
To: Michał Kopeć <michal.kopec@...eb.com>
Cc: Hans de Goede <hdegoede@...hat.com>,
Ilpo Järvinen <ilpo.jarvinen@...ux.intel.com>,
Thomas Weißschuh <linux@...ssschuh.net>,
platform-driver-x86@...r.kernel.org, linux-kernel@...r.kernel.org,
kernel-janitors@...r.kernel.org
Subject: [PATCH next] platform/x86: dasharo-acpi: Fix a couple off by one bugs
These two > comparisons should be >= to prevent reading beyond
the end of the array.
Fixes: 2dd40523b7e2 ("platform/x86: Introduce dasharo-acpi platform driver")
Signed-off-by: Dan Carpenter <dan.carpenter@...aro.org>
---
drivers/platform/x86/dasharo-acpi.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/platform/x86/dasharo-acpi.c b/drivers/platform/x86/dasharo-acpi.c
index f10f52e44641..f0c5136af29d 100644
--- a/drivers/platform/x86/dasharo-acpi.c
+++ b/drivers/platform/x86/dasharo-acpi.c
@@ -101,10 +101,10 @@ static int dasharo_read_channel(struct dasharo_data *data, char *method, enum da
acpi_status status;
u64 val;
- if (feat > ARRAY_SIZE(data->capabilities))
+ if (feat >= ARRAY_SIZE(data->capabilities))
return -EINVAL;
- if (channel > data->caps_found[feat])
+ if (channel >= data->caps_found[feat])
return -EINVAL;
obj[0].type = ACPI_TYPE_INTEGER;
--
2.47.2
Powered by blists - more mailing lists