mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-05 05:42:36 +00:00
[PATCH] tty: use NULL for ptrs
Fix sparse warning in tty_io: drivers/char/tty_io.c:1536:34: warning: Using plain integer as NULL pointer Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
262d9b0130
commit
23cac8debc
1 changed files with 1 additions and 1 deletions
|
@ -1533,7 +1533,7 @@ void disassociate_ctty(int on_exit)
|
||||||
|
|
||||||
spin_lock_irq(¤t->sighand->siglock);
|
spin_lock_irq(¤t->sighand->siglock);
|
||||||
tty_pgrp = current->signal->tty_old_pgrp;
|
tty_pgrp = current->signal->tty_old_pgrp;
|
||||||
current->signal->tty_old_pgrp = 0;
|
current->signal->tty_old_pgrp = NULL;
|
||||||
spin_unlock_irq(¤t->sighand->siglock);
|
spin_unlock_irq(¤t->sighand->siglock);
|
||||||
put_pid(tty_pgrp);
|
put_pid(tty_pgrp);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue