xfs: 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> Reviewed-by: Darrick J. Wong <djwong@kernel.org> Signed-off-by: Darrick J. Wong <djwong@kernel.org>
This commit is contained in:
parent
6d796c50f8
commit
8954c44ff4
1 changed files with 1 additions and 3 deletions
|
@ -212,9 +212,7 @@ __xfs_xattr_put_listent(
|
||||||
offset = context->buffer + context->count;
|
offset = context->buffer + context->count;
|
||||||
memcpy(offset, prefix, prefix_len);
|
memcpy(offset, prefix, prefix_len);
|
||||||
offset += prefix_len;
|
offset += prefix_len;
|
||||||
strncpy(offset, (char *)name, namelen); /* real name */
|
strscpy(offset, (char *)name, namelen + 1); /* real name */
|
||||||
offset += namelen;
|
|
||||||
*offset = '\0';
|
|
||||||
|
|
||||||
compute_size:
|
compute_size:
|
||||||
context->count += prefix_len + namelen + 1;
|
context->count += prefix_len + namelen + 1;
|
||||||
|
|
Loading…
Add table
Reference in a new issue