mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 14:53:58 -04:00
s390/zcrypt: use strscpy() to 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.cn> Link: https://lore.kernel.org/r/202301052024349365834@zte.com.cn Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
This commit is contained in:
@@ -347,8 +347,7 @@ static ssize_t zcdn_create_store(struct class *class,
|
||||
int rc;
|
||||
char name[ZCDN_MAX_NAME];
|
||||
|
||||
strncpy(name, skip_spaces(buf), sizeof(name));
|
||||
name[sizeof(name) - 1] = '\0';
|
||||
strscpy(name, skip_spaces(buf), sizeof(name));
|
||||
|
||||
rc = zcdn_create(strim(name));
|
||||
|
||||
@@ -365,8 +364,7 @@ static ssize_t zcdn_destroy_store(struct class *class,
|
||||
int rc;
|
||||
char name[ZCDN_MAX_NAME];
|
||||
|
||||
strncpy(name, skip_spaces(buf), sizeof(name));
|
||||
name[sizeof(name) - 1] = '\0';
|
||||
strscpy(name, skip_spaces(buf), sizeof(name));
|
||||
|
||||
rc = zcdn_destroy(strim(name));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user