Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 55993
b: refs/heads/master
c: 510f400
h: refs/heads/master
i:
  55991: e6fe502
v: v3
  • Loading branch information
Amy Griffis authored and Al Viro committed May 11, 2007
1 parent b7fd3d9 commit 9d341bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e41e8bde43026d5d2e41464e6105a50b31e34102
refs/heads/master: 510f4006e7a82b37b53c17bbe64ec20f3a59302b
2 changes: 2 additions & 0 deletions trunk/fs/xattr.c
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,7 @@ sys_fgetxattr(int fd, char __user *name, void __user *value, size_t size)
f = fget(fd);
if (!f)
return error;
audit_inode(NULL, f->f_path.dentry->d_inode);
error = getxattr(f->f_path.dentry, name, value, size);
fput(f);
return error;
Expand Down Expand Up @@ -422,6 +423,7 @@ sys_flistxattr(int fd, char __user *list, size_t size)
f = fget(fd);
if (!f)
return error;
audit_inode(NULL, f->f_path.dentry->d_inode);
error = listxattr(f->f_path.dentry, list, size);
fput(f);
return error;
Expand Down

0 comments on commit 9d341bf

Please sign in to comment.