Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit eb915375 authored by Chengguang Xu's avatar Chengguang Xu Committed by Al Viro
Browse files

vfs: delete unnecessary assignment in vfs_listxattr



It seems the first error assignment in if branch is redundant.

Signed-off-by: default avatarChengguang Xu <cgxu519@gmx.com>
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 965de0ec
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -353,7 +353,6 @@ vfs_listxattr(struct dentry *dentry, char *list, size_t size)
	if (error)
		return error;
	if (inode->i_op->listxattr && (inode->i_opflags & IOP_XATTR)) {
		error = -EOPNOTSUPP;
		error = inode->i_op->listxattr(dentry, list, size);
	} else {
		error = security_inode_listsecurity(inode, list, size);