Commit 723be1f3 authored by Duane Griffin's avatar Duane Griffin Committed by Al Viro

ufs: copy symlink data into the correct union member

Copy symlink data into the union member it is accessed through. Although
this shouldn't make a difference to behaviour it makes the code easier
to follow and grep through. It may also prevent problems if the
struct/union definitions change in the future.
Signed-off-by: default avatarDuane Griffin <duaneg@dghda.com>
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent b12903f1
...@@ -147,7 +147,7 @@ static int ufs_symlink (struct inode * dir, struct dentry * dentry, ...@@ -147,7 +147,7 @@ static int ufs_symlink (struct inode * dir, struct dentry * dentry,
} else { } else {
/* fast symlink */ /* fast symlink */
inode->i_op = &ufs_fast_symlink_inode_operations; inode->i_op = &ufs_fast_symlink_inode_operations;
memcpy((char*)&UFS_I(inode)->i_u1.i_data,symname,l); memcpy(UFS_I(inode)->i_u1.i_symlink, symname, l);
inode->i_size = l-1; inode->i_size = l-1;
} }
mark_inode_dirty(inode); mark_inode_dirty(inode);
......
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