mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 00:04:15 +08:00
tty: fix missing assignment
We're trying to save the termios state and we need to allocate a buffer to do it. Smatch complains that the buffer is leaked at the end of the function. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
6b9563a714
commit
4ac5d7050e
@ -1450,6 +1450,7 @@ void tty_free_termios(struct tty_struct *tty)
|
||||
pr_warn("tty: no memory to save termios state.\n");
|
||||
return;
|
||||
}
|
||||
tty->driver->termios[idx] = tp;
|
||||
}
|
||||
*tp = tty->termios;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user