diff options
author | Fabian Frederick <fabf@skynet.be> | 2014-06-06 17:36:15 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-06 19:08:09 -0400 |
commit | 39d7a29f867bd5a4a551fad6bb3812ceddb0bce1 (patch) | |
tree | 985cb0eeb6f1a38fde6f5abcf0ee6e7921fd27af /fs/befs | |
parent | 8b18daa1bc7ed8a7a06df77de9c4a37e842e83b2 (diff) |
fs/befs/linuxvfs.c: replace strncpy by strlcpy
strncpy + end of string assignment replaced by strlcpy
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/befs')
-rw-r--r-- | fs/befs/linuxvfs.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/befs/linuxvfs.c b/fs/befs/linuxvfs.c index d626756ff721..1e27cd33f7f2 100644 --- a/fs/befs/linuxvfs.c +++ b/fs/befs/linuxvfs.c | |||
@@ -396,9 +396,8 @@ static struct inode *befs_iget(struct super_block *sb, unsigned long ino) | |||
396 | if (S_ISLNK(inode->i_mode) && !(befs_ino->i_flags & BEFS_LONG_SYMLINK)){ | 396 | if (S_ISLNK(inode->i_mode) && !(befs_ino->i_flags & BEFS_LONG_SYMLINK)){ |
397 | inode->i_size = 0; | 397 | inode->i_size = 0; |
398 | inode->i_blocks = befs_sb->block_size / VFS_BLOCK_SIZE; | 398 | inode->i_blocks = befs_sb->block_size / VFS_BLOCK_SIZE; |
399 | strncpy(befs_ino->i_data.symlink, raw_inode->data.symlink, | 399 | strlcpy(befs_ino->i_data.symlink, raw_inode->data.symlink, |
400 | BEFS_SYMLINK_LEN - 1); | 400 | BEFS_SYMLINK_LEN); |
401 | befs_ino->i_data.symlink[BEFS_SYMLINK_LEN - 1] = '\0'; | ||
402 | } else { | 401 | } else { |
403 | int num_blks; | 402 | int num_blks; |
404 | 403 | ||