Merge tag 'char-misc-4.13-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc

Pull char/misc fix from Greg KH:
"Here is a single misc driver fix for 4.13-rc7. It resolves a reported
problem in the Android binder driver due to previous patches in
4.13-rc.

It's been in linux-next with no reported issues"

* tag 'char-misc-4.13-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc:
ANDROID: binder: fix proc->tsk check.

Changed files
+1 -1
drivers
android
+1 -1
drivers/android/binder.c
··· 3362 3362 const char *failure_string; 3363 3363 struct binder_buffer *buffer; 3364 3364 3365 - if (proc->tsk != current) 3365 + if (proc->tsk != current->group_leader) 3366 3366 return -EINVAL; 3367 3367 3368 3368 if ((vma->vm_end - vma->vm_start) > SZ_4M)