1
0
mirror of https://github.com/simh/simh.git synced 2026-03-03 01:58:53 +00:00

VAX QVSS: Increase LK keyboard mode map to avoid a potential out of bounds array reference

This commit is contained in:
Mark Pizzolato
2014-10-27 04:40:41 -07:00
parent 2e1167d4a0
commit c638492048

View File

@@ -168,7 +168,7 @@ int32 lk_shptr = 0; /* send buf head ptr */
int32 lk_stptr = 0; /* send buf tail ptr */
uint8 lk_rbuf[10]; /* receive buffer */
int32 lk_rbuf_p = 0; /* receive buffer ptr */
int32 lk_mode[15]; /* mode of each key group */
int32 lk_mode[16]; /* mode of each key group */
DEVICE lk_dev;
t_stat lk_wr (uint8 c);