Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 26106
b: refs/heads/master
c: b9251b8
h: refs/heads/master
v: v3
  • Loading branch information
Jan Kara authored and Linus Torvalds committed Apr 22, 2006
1 parent fc524f1 commit a458b6c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8c4335a87c9785d2102ab23f09393038e1663314
refs/heads/master: b9251b823b5e921c894eb135cb6c64abf483f50e
5 changes: 3 additions & 2 deletions trunk/fs/reiserfs/xattr_acl.c
Original file line number Diff line number Diff line change
Expand Up @@ -408,8 +408,9 @@ int reiserfs_cache_default_acl(struct inode *inode)
acl = reiserfs_get_acl(inode, ACL_TYPE_DEFAULT);
reiserfs_read_unlock_xattrs(inode->i_sb);
reiserfs_read_unlock_xattr_i(inode);
ret = acl ? 1 : 0;
posix_acl_release(acl);
ret = (acl && !IS_ERR(acl));
if (ret)
posix_acl_release(acl);
}

return ret;
Expand Down

0 comments on commit a458b6c

Please sign in to comment.