[CVE-2009-0029] System call wrappers part 15
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
This commit is contained in:
@ -594,7 +594,7 @@ out:
|
||||
return error;
|
||||
}
|
||||
|
||||
asmlinkage long sys_fchmod(unsigned int fd, mode_t mode)
|
||||
SYSCALL_DEFINE2(fchmod, unsigned int, fd, mode_t, mode)
|
||||
{
|
||||
struct inode * inode;
|
||||
struct dentry * dentry;
|
||||
@ -658,7 +658,7 @@ out:
|
||||
return error;
|
||||
}
|
||||
|
||||
asmlinkage long sys_chmod(const char __user *filename, mode_t mode)
|
||||
SYSCALL_DEFINE2(chmod, const char __user *, filename, mode_t, mode)
|
||||
{
|
||||
return sys_fchmodat(AT_FDCWD, filename, mode);
|
||||
}
|
||||
|
Reference in New Issue
Block a user