aboutsummaryrefslogtreecommitdiff
path: root/console.c
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2011-11-22 11:59:07 +0100
committerStefan Hajnoczi <stefanha@linux.vnet.ibm.com>2011-12-06 09:56:40 +0000
commit95d8f9f41c313c458dd34e0a54162c414a352111 (patch)
tree3d80a75511c5a30db1869a0dbf381efbd0e43f07 /console.c
parentf94a950f790aabb33fcb75f0a4a3bbaaa6e3810b (diff)
console: Fix console_putchar() for CSI J
It falls through to the code for CSI K. "Erase Down" also does "Erase End of Line", "Erase Up" also does "Erase Start of Line", and "Erase Screen" also does "Erase Line". Happens not to be visible. Fix it anyway. Spotted by Coverity. Signed-off-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'console.c')
-rw-r--r--console.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/console.c b/console.c
index 374fcba4b5..ce0429df8c 100644
--- a/console.c
+++ b/console.c
@@ -1011,6 +1011,7 @@ static void console_putchar(TextConsole *s, int ch)
}
break;
}
+ break;
case 'K':
switch (s->esc_params[0]) {
case 0: