Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/selinux-2.6
* 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/selinux-2.6: selinux: fix dentry_open() error check
This commit is contained in:
@@ -1754,7 +1754,8 @@ static inline void flush_unauthorized_files(struct files_struct * files)
|
|||||||
get_file(devnull);
|
get_file(devnull);
|
||||||
} else {
|
} else {
|
||||||
devnull = dentry_open(dget(selinux_null), mntget(selinuxfs_mount), O_RDWR);
|
devnull = dentry_open(dget(selinux_null), mntget(selinuxfs_mount), O_RDWR);
|
||||||
if (!devnull) {
|
if (IS_ERR(devnull)) {
|
||||||
|
devnull = NULL;
|
||||||
put_unused_fd(fd);
|
put_unused_fd(fd);
|
||||||
fput(file);
|
fput(file);
|
||||||
continue;
|
continue;
|
||||||
|
Reference in New Issue
Block a user