Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+2 -1
+2 -1
security/selinux/hooks.c
··· 1754 1754 get_file(devnull); 1755 1755 } else { 1756 1756 devnull = dentry_open(dget(selinux_null), mntget(selinuxfs_mount), O_RDWR); 1757 - if (!devnull) { 1757 + if (IS_ERR(devnull)) { 1758 + devnull = NULL; 1758 1759 put_unused_fd(fd); 1759 1760 fput(file); 1760 1761 continue;