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

Commit dc7789ef authored by Chengguang Xu's avatar Chengguang Xu Committed by David Sterba
Browse files

btrfs: avoid error code override in btrfs_get_acl



It's not good to override the error code when failing from
btrfs_getxattr() in btrfs_get_acl() because it hides the real reason of
the failure.

Signed-off-by: default avatarChengguang Xu <cgxu519@gmx.com>
Reviewed-by: default avatarNikolay Borisov <nborisov@suse.com>
Reviewed-by: default avatarDavid Sterba <dsterba@suse.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent 5ee552da
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -45,7 +45,7 @@ struct posix_acl *btrfs_get_acl(struct inode *inode, int type)
	} else if (size == -ENODATA || size == 0) {
		acl = NULL;
	} else {
		acl = ERR_PTR(-EIO);
		acl = ERR_PTR(size);
	}
	kfree(value);