From: Muhammad Qasim Abdul Majeed Date: Sun, 15 Sep 2024 18:38:14 +0000 (+0500) Subject: ACPI: EC: Use strscpy() instead of strcpy() X-Git-Tag: v6.13-rc1~192^2^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f098bb555fdd9e6eede8664e308d4b211946853d;p=thirdparty%2Flinux.git ACPI: EC: Use strscpy() instead of strcpy() Replace strcpy() with strscpy() in the ACPI EC driver. strcpy() has been deprecated because it is generally unsafe, so it is better to eliminate it from the kernel source. Link: https://github.com/KSPP/linux/issues/88 Signed-off-by: Muhammad Qasim Abdul Majeed Link: https://patch.msgid.link/20240915183822.34588-2-qasim.majeed20@gmail.com [ rjw: Subject and changelog edits ] Signed-off-by: Rafael J. Wysocki --- diff --git a/drivers/acpi/ec.c b/drivers/acpi/ec.c index 25399f6dde7e2..8db09d81918fb 100644 --- a/drivers/acpi/ec.c +++ b/drivers/acpi/ec.c @@ -1677,8 +1677,8 @@ static int acpi_ec_add(struct acpi_device *device) struct acpi_ec *ec; int ret; - strcpy(acpi_device_name(device), ACPI_EC_DEVICE_NAME); - strcpy(acpi_device_class(device), ACPI_EC_CLASS); + strscpy(acpi_device_name(device), ACPI_EC_DEVICE_NAME); + strscpy(acpi_device_class(device), ACPI_EC_CLASS); if (boot_ec && (boot_ec->handle == device->handle || !strcmp(acpi_device_hid(device), ACPI_ECDT_HID))) {