Re: [PATCH net-next v1] NFC: nxp-nci: Replace strcpy() with strscpy()
From: Simon Horman
Date: Tue Mar 03 2026 - 13:23:27 EST
On Sun, Mar 01, 2026 at 02:56:33PM +0100, tomasz.unger@xxxxxxxx wrote:
> From: Tomasz Unger <tomasz.unger@xxxxxxxx>
>
> Replace strcpy() with strscpy() which limits the copy to the size of
> the destination buffer. Since fw_info->name is an array, the
> two-argument variant of strscpy() is used - the compiler deduces
> the buffer size automatically.
>
> This is a defensive cleanup replacing the deprecated strcpy()
> with the preferred strscpy().
>
> Signed-off-by: Tomasz Unger <tomasz.unger@xxxxxxxx>
> ---
> Testing:
> - checkpatch.pl: 0 errors, 0 warnings
> - make M=drivers/nfc/nxp-nci/: compiled successfully, 0 errors, 0 warnings
> - Module loaded successfully in QEMU (x86_64) with buildroot:
> modprobe nxp-nci - no errors, confirmed via lsmod
Reviewed-by: Simon Horman <horms@xxxxxxxxxx>