Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 26848
b: refs/heads/master
c: 9ccfc29
h: refs/heads/master
v: v3
  • Loading branch information
Florin Malita authored and Linus Torvalds committed May 21, 2006
1 parent 84aa454 commit ca13b20
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 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: 2adc7d47c4dbf684e69ee3980c158ff684dc170e
refs/heads/master: 9ccfc29c671c9d0a83c2a114d4bc5f85f3cd749d
7 changes: 3 additions & 4 deletions trunk/fs/nfsd/vfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -1922,11 +1922,10 @@ nfsd_set_posix_acl(struct svc_fh *fhp, int type, struct posix_acl *acl)
value = kmalloc(size, GFP_KERNEL);
if (!value)
return -ENOMEM;
size = posix_acl_to_xattr(acl, value, size);
if (size < 0) {
error = size;
error = posix_acl_to_xattr(acl, value, size);
if (error < 0)
goto getout;
}
size = error;
} else
size = 0;

Expand Down

0 comments on commit ca13b20

Please sign in to comment.