diff --git a/fs/btrfs/acl.c b/fs/btrfs/acl.c index a892bc27f13a8c41e195ee73726a40df137f331d..827be9a6ca33ae6bcd00445478eb72b51241b1c8 100644 --- a/fs/btrfs/acl.c +++ b/fs/btrfs/acl.c @@ -178,12 +178,13 @@ static int btrfs_xattr_acl_set(struct dentry *dentry, const char *name, if (value) { acl = posix_acl_from_xattr(value, size); + if (IS_ERR(acl)) + return PTR_ERR(acl); + if (acl) { ret = posix_acl_valid(acl); if (ret) goto out; - } else if (IS_ERR(acl)) { - return PTR_ERR(acl); } }