From eb915375757cd32c5abf7aea4caa76fe7edf8ef4 Mon Sep 17 00:00:00 2001 From: Chengguang Xu Date: Wed, 16 May 2018 13:34:52 +0800 Subject: vfs: delete unnecessary assignment in vfs_listxattr It seems the first error assignment in if branch is redundant. Signed-off-by: Chengguang Xu Signed-off-by: Al Viro --- fs/xattr.c | 1 - 1 file changed, 1 deletion(-) (limited to 'fs/xattr.c') diff --git a/fs/xattr.c b/fs/xattr.c index 28e1dfc27b95..f9cb1db187b7 100644 --- a/fs/xattr.c +++ b/fs/xattr.c @@ -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); -- cgit