Wolfgang Kroworsch a564738c1c vt: incomplete initialization of vc_tab_stop
Problem 1 (see patch below):
  vc_tab_stop is declared as an array of 8 unsigned ints in struct
  vc_data in include/linux/console_struct.h .
  In drivers/char/vt.c only 5 of these 8 unsigned ints get initialized
  leading to unintended tabulator placement on displays with more than
  160 columns text.

Problem 2 (open):
  Upcoming displays will have more than 256 columns of text leading to
  invalid memory access in drivers/char/vt.c during tabulator
  calculations:
    if (vc->vc_tab_stop[vc->vc_x >> 5] & (1 << (vc->vc_x & 31)))
	break;

Signed-off-by: Wolfgang Kroworsch <wolfgang@kroworsch.de>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Cc: Christoph Hellwig <hch@lst.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2008-11-06 15:41:17 -08:00
..
2008-10-28 17:46:02 +09:00
2008-10-26 10:27:01 +01:00
2008-10-22 01:19:39 +02:00
2008-11-01 09:49:46 -07:00
2008-10-30 15:55:47 +01:00
2008-11-02 21:40:10 +01:00
2008-11-01 09:49:46 -07:00
2008-11-01 09:50:12 -07:00
2008-10-21 07:48:33 -04:00
2008-11-01 09:50:12 -07:00
2008-11-04 08:18:19 -08:00
2008-10-16 11:21:30 -07:00
2008-11-04 08:18:19 -08:00
2008-11-01 09:49:46 -07:00
2008-11-04 08:18:19 -08:00
2008-11-01 09:49:46 -07:00
2008-11-01 09:49:46 -07:00
2008-11-01 09:49:46 -07:00
2008-11-01 12:40:38 -07:00
2008-11-04 08:18:19 -08:00
2008-10-28 21:47:17 +00:00