lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAJZ5v0iDPiz3Q-eu5AaKmi39xfxUNYPnWvpjCQCvgK_evEJ8-w@mail.gmail.com>
Date: Tue, 9 Jul 2024 18:11:09 +0200
From: "Rafael J. Wysocki" <rafael@...nel.org>
To: Thomas Andreatta <thomasandreatta2000@...il.com>
Cc: rafael@...nel.org, linux-acpi@...r.kernel.org, 
	linux-kernel@...r.kernel.org, 
	Thomas Andreatta <thomas.andreatta2000@...il.com>
Subject: Re: [PATCH] Staging: acpi: fixed a coding style issue moving from
 strcpy to strscpy.

On Fri, Jul 5, 2024 at 9:18 PM Thomas Andreatta
<thomasandreatta2000@...il.com> wrote:
>
> fixed a coding style issue moving from strcpy to strscpy.

This is not a coding style issue and the change below is not a fix.

It just replaces strcpy() with strscpy() which is preferred (for some
reason that needs to be mentioned).

> Signed-off-by: Thomas Andreatta <thomas.andreatta2000@...il.com>
> ---
>  drivers/acpi/ac.c | 7 +++++--
>  1 file changed, 5 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/acpi/ac.c b/drivers/acpi/ac.c
> index 09a87fa222c7..f4b5ba033df8 100644
> --- a/drivers/acpi/ac.c
> +++ b/drivers/acpi/ac.c
> @@ -213,8 +213,11 @@ static int acpi_ac_probe(struct platform_device *pdev)
>                 return -ENOMEM;
>
>         ac->device = adev;
> -       strcpy(acpi_device_name(adev), ACPI_AC_DEVICE_NAME);
> -       strcpy(acpi_device_class(adev), ACPI_AC_CLASS);
> +       char *device_class = acpi_device_class(adev);
> +       char *device_name = acpi_device_name(adev);
> +
> +       strscpy(acpi_device_name(adev), ACPI_AC_DEVICE_NAME, strlen(device_name));
> +       strscpy(device_class, ACPI_AC_CLASS, strlen(device_class));

The last argument of strscpy() is not necessary in both cases.

>
>         platform_set_drvdata(pdev, ac);
>
> --

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ