aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/char/tty_io.c5
-rw-r--r--kernel/exit.c2
2 files changed, 4 insertions, 3 deletions
diff --git a/drivers/char/tty_io.c b/drivers/char/tty_io.c
index cc941a3504d7..a19fef2093f1 100644
--- a/drivers/char/tty_io.c
+++ b/drivers/char/tty_io.c
@@ -707,6 +707,8 @@ void disassociate_ctty(int on_exit)
707 struct tty_struct *tty; 707 struct tty_struct *tty;
708 struct pid *tty_pgrp = NULL; 708 struct pid *tty_pgrp = NULL;
709 709
710 if (!current->signal->leader)
711 return;
710 712
711 tty = get_current_tty(); 713 tty = get_current_tty();
712 if (tty) { 714 if (tty) {
@@ -772,8 +774,7 @@ void no_tty(void)
772{ 774{
773 struct task_struct *tsk = current; 775 struct task_struct *tsk = current;
774 lock_kernel(); 776 lock_kernel();
775 if (tsk->signal->leader) 777 disassociate_ctty(0);
776 disassociate_ctty(0);
777 unlock_kernel(); 778 unlock_kernel();
778 proc_clear_tty(tsk); 779 proc_clear_tty(tsk);
779} 780}
diff --git a/kernel/exit.c b/kernel/exit.c
index 1143012951e9..6f50ef55a6f3 100644
--- a/kernel/exit.c
+++ b/kernel/exit.c
@@ -971,7 +971,7 @@ NORET_TYPE void do_exit(long code)
971 exit_thread(); 971 exit_thread();
972 cgroup_exit(tsk, 1); 972 cgroup_exit(tsk, 1);
973 973
974 if (group_dead && tsk->signal->leader) 974 if (group_dead)
975 disassociate_ctty(1); 975 disassociate_ctty(1);
976 976
977 module_put(task_thread_info(tsk)->exec_domain->module); 977 module_put(task_thread_info(tsk)->exec_domain->module);