Commit 39d7a29f authored by Fabian Frederick's avatar Fabian Frederick Committed by Linus Torvalds

fs/befs/linuxvfs.c: replace strncpy by strlcpy

strncpy + end of string assignment replaced by strlcpy
Signed-off-by: default avatarFabian Frederick <fabf@skynet.be>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 8b18daa1
...@@ -396,9 +396,8 @@ static struct inode *befs_iget(struct super_block *sb, unsigned long ino) ...@@ -396,9 +396,8 @@ static struct inode *befs_iget(struct super_block *sb, unsigned long ino)
if (S_ISLNK(inode->i_mode) && !(befs_ino->i_flags & BEFS_LONG_SYMLINK)){ if (S_ISLNK(inode->i_mode) && !(befs_ino->i_flags & BEFS_LONG_SYMLINK)){
inode->i_size = 0; inode->i_size = 0;
inode->i_blocks = befs_sb->block_size / VFS_BLOCK_SIZE; inode->i_blocks = befs_sb->block_size / VFS_BLOCK_SIZE;
strncpy(befs_ino->i_data.symlink, raw_inode->data.symlink, strlcpy(befs_ino->i_data.symlink, raw_inode->data.symlink,
BEFS_SYMLINK_LEN - 1); BEFS_SYMLINK_LEN);
befs_ino->i_data.symlink[BEFS_SYMLINK_LEN - 1] = '\0';
} else { } else {
int num_blks; int num_blks;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment