diff --git a/fs/proc/base.c b/fs/proc/base.c index 9cde9edf9c4d40a4a3c20e3fb1c3758518092f98..c3617ea7830bad1632cfa9da39bf9b2cce3dba1f 100644 --- a/fs/proc/base.c +++ b/fs/proc/base.c @@ -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; }