diff options
author | Markus Armbruster <armbru@redhat.com> | 2011-11-22 11:59:07 +0100 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> | 2011-12-06 09:56:40 +0000 |
commit | 95d8f9f41c313c458dd34e0a54162c414a352111 (patch) | |
tree | 3d80a75511c5a30db1869a0dbf381efbd0e43f07 /console.c | |
parent | f94a950f790aabb33fcb75f0a4a3bbaaa6e3810b (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.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1011,6 +1011,7 @@ static void console_putchar(TextConsole *s, int ch) } break; } + break; case 'K': switch (s->esc_params[0]) { case 0: |