dect
/
linux-2.6
Archived
13
0
Fork 0

audit: remove bogus tty name check

tty name is an array not a pointer

Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Alan Cox 2012-10-16 11:53:44 +01:00 committed by Greg Kroah-Hartman
parent b61c5ed571
commit 8ae763cd7e
1 changed files with 1 additions and 1 deletions

View File

@ -1159,7 +1159,7 @@ void audit_log_task_info(struct audit_buffer *ab, struct task_struct *tsk)
cred = current_cred();
spin_lock_irq(&tsk->sighand->siglock);
if (tsk->signal && tsk->signal->tty && tsk->signal->tty->name)
if (tsk->signal && tsk->signal->tty)
tty = tsk->signal->tty->name;
else
tty = "(none)";