mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 12:43:29 +02:00
vfs: delete unnecessary assignment in vfs_listxattr
It seems the first error assignment in if branch is redundant. Signed-off-by: Chengguang Xu <cgxu519@gmx.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
@@ -353,7 +353,6 @@ vfs_listxattr(struct dentry *dentry, char *list, size_t size)
|
|||||||
if (error)
|
if (error)
|
||||||
return error;
|
return error;
|
||||||
if (inode->i_op->listxattr && (inode->i_opflags & IOP_XATTR)) {
|
if (inode->i_op->listxattr && (inode->i_opflags & IOP_XATTR)) {
|
||||||
error = -EOPNOTSUPP;
|
|
||||||
error = inode->i_op->listxattr(dentry, list, size);
|
error = inode->i_op->listxattr(dentry, list, size);
|
||||||
} else {
|
} else {
|
||||||
error = security_inode_listsecurity(inode, list, size);
|
error = security_inode_listsecurity(inode, list, size);
|
||||||
|
Reference in New Issue
Block a user