TTY: ntty, add one more sanity check
With the previous patch, we fixed another bug where read_buf was freed while we still was in n_tty_read. We currently check whether read_buf is NULL at the start of the function. Add one more check after we wake up from waiting for input. Signed-off-by: Jiri Slaby <jslaby@suse.cz> Cc: Alan Cox <alan@lxorguk.ukuu.org.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Родитель
92f6fa09bd
Коммит
2872628680
|
@ -1815,6 +1815,7 @@ do_it_again:
|
||||||
/* FIXME: does n_tty_set_room need locking ? */
|
/* FIXME: does n_tty_set_room need locking ? */
|
||||||
n_tty_set_room(tty);
|
n_tty_set_room(tty);
|
||||||
timeout = schedule_timeout(timeout);
|
timeout = schedule_timeout(timeout);
|
||||||
|
BUG_ON(!tty->read_buf);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
__set_current_state(TASK_RUNNING);
|
__set_current_state(TASK_RUNNING);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче