summaryrefslogtreecommitdiff
path: root/drivers/power
diff options
context:
space:
mode:
authorXu Panda <xu.panda@zte.com.cn>2022-12-23 05:42:35 +0300
committerSebastian Reichel <sre@kernel.org>2023-02-03 15:43:48 +0300
commit3639dbd74e2e827d544bdb28b663a44449c014e1 (patch)
tree81f9cc14c990feb29af7714c8c35fd22d2bf4c97 /drivers/power
parente2b018cb55151cbee2c4b8f48ef731f0a683b9b6 (diff)
downloadlinux-3639dbd74e2e827d544bdb28b663a44449c014e1.tar.xz
power: supply: test-power: use strscpy() instead of strncpy()
The implementation of strscpy() is more robust and safer. That's now the recommended way to copy NUL-terminated strings. Signed-off-by: Xu Panda <xu.panda@zte.com.cn> Signed-off-by: Yang Yang <yang.yang29@zte.com> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Diffstat (limited to 'drivers/power')
-rw-r--r--drivers/power/supply/test_power.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/power/supply/test_power.c b/drivers/power/supply/test_power.c
index 5f510ddc946d..0d0a77584c5d 100644
--- a/drivers/power/supply/test_power.c
+++ b/drivers/power/supply/test_power.c
@@ -306,8 +306,7 @@ static int map_get_value(struct battery_property_map *map, const char *key,
char buf[MAX_KEYLENGTH];
int cr;
- strncpy(buf, key, MAX_KEYLENGTH);
- buf[MAX_KEYLENGTH-1] = '\0';
+ strscpy(buf, key, MAX_KEYLENGTH);
cr = strnlen(buf, MAX_KEYLENGTH) - 1;
if (cr < 0)