1
0
Fork 0

proc: mem_release() should check mm != NULL

mem_release() can hit mm == NULL, add the necessary check.

Cc: stable@kernel.org
Signed-off-by: Oleg Nesterov <oleg@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
hifive-unleashed-5.1
Oleg Nesterov 2012-01-31 17:14:38 +01:00 committed by Linus Torvalds
parent 879a5a001b
commit 71879d3cb3
1 changed files with 2 additions and 2 deletions

View File

@ -822,8 +822,8 @@ loff_t mem_lseek(struct file *file, loff_t offset, int orig)
static int mem_release(struct inode *inode, struct file *file)
{
struct mm_struct *mm = file->private_data;
mmput(mm);
if (mm)
mmput(mm);
return 0;
}