Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 84253
b: refs/heads/master
c: 36f97bc
h: refs/heads/master
i:
  84251: 7337c6d
v: v3
  • Loading branch information
Julia Lawall authored and David Woodhouse committed Jan 8, 2008
1 parent 5f43dfa commit f664a13
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 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: 71053fb1c645e86feb48051d6a4c58b8f2b26806
refs/heads/master: 36f97bc617e2c31d16b74e89cd2406de4d24ede5
4 changes: 3 additions & 1 deletion trunk/fs/jffs2/acl.c
Original file line number Diff line number Diff line change
Expand Up @@ -345,8 +345,10 @@ int jffs2_init_acl_pre(struct inode *dir_i, struct inode *inode, int *i_mode)
if (!clone)
return -ENOMEM;
rc = posix_acl_create_masq(clone, (mode_t *)i_mode);
if (rc < 0)
if (rc < 0) {
posix_acl_release(clone);
return rc;
}
if (rc > 0)
jffs2_iset_acl(inode, &f->i_acl_access, clone);

Expand Down

0 comments on commit f664a13

Please sign in to comment.