Commit 4ac5d705 authored by Dan Carpenter's avatar Dan Carpenter Committed by Greg Kroah-Hartman

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: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarAlan Cox <alan@linux.intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6b9563a7
...@@ -1450,6 +1450,7 @@ void tty_free_termios(struct tty_struct *tty) ...@@ -1450,6 +1450,7 @@ void tty_free_termios(struct tty_struct *tty)
pr_warn("tty: no memory to save termios state.\n"); pr_warn("tty: no memory to save termios state.\n");
return; return;
} }
tty->driver->termios[idx] = tp;
} }
*tp = tty->termios; *tp = tty->termios;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment