PNP: ACPI: Fix string truncation warning
authorSunil V L <sunilvl@ventanamicro.com>
Tue, 25 Jul 2023 05:29:25 +0000 (10:59 +0530)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Thu, 17 Aug 2023 17:38:35 +0000 (19:38 +0200)
commit99c31bff185610304532c4acf00cda341572e2d4
tree82d6b5d3085c4e34cf9571e0b844de7523f9fbd7
parent2ccdd1b13c591d306f0401d98dedc4bdcd02b421
PNP: ACPI: Fix string truncation warning

LKP reports below warning when building for RISC-V.

drivers/pnp/pnpacpi/core.c:253:17:
warning: 'strncpy' specified bound 50 equals destination
size [-Wstringop-truncation]

This appears to be a valid issue since the destination string may not be
null-terminated.

To fix this, append the NUL explicitly after the strncpy().

Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202307241942.Rff2Nri5-lkp@intel.com/
Signed-off-by: Sunil V L <sunilvl@ventanamicro.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/pnp/pnpacpi/core.c