tty: vt, fix bogus division in csi_J
authorJiri Slaby <jslaby@suse.cz>
Mon, 3 Oct 2016 09:00:17 +0000 (11:00 +0200)
committerWilly Tarreau <w@1wt.eu>
Fri, 10 Feb 2017 10:03:40 +0000 (11:03 +0100)
commit902fd8d597f6cec01c7d24da38e0a921fdbc6382
tree377e24b954149d8896eec4ae4ee15b6e606186a4
parent350594012a219713e7ad990669c660b29bad2ab2
tty: vt, fix bogus division in csi_J

commit 42acfc6615f47e465731c263bee0c799edb098f2 upstream.

In csi_J(3), the third parameter of scr_memsetw (vc_screenbuf_size) is
divided by 2 inappropriatelly. But scr_memsetw expects size, not
count, because it divides the size by 2 on its own before doing actual
memset-by-words.

So remove the bogus division.

Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Cc: Petr PísaÅ\99 <ppisar@redhat.com>
Fixes: f8df13e0a9 (tty: Clean console safely)
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Willy Tarreau <w@1wt.eu>
drivers/tty/vt/vt.c