diff options
author | 2018-05-16 11:43:06 +0300 | |
---|---|---|
committer | 2018-05-16 18:43:05 +1000 | |
commit | c7bda1bc2f2d1edac206df5622405399f8cbe805 (patch) | |
tree | e41f07d3a1434d82d6363bec452fccace8954f60 /src/devices/video/hp1ll3.h | |
parent | 680d9e1aeb75a84a764aabe482425c5e32056664 (diff) |
video/hp1ll3: add runtime bounds check in CONF command (issue#3523) (nw) (#3547)
* video/hp1ll3: add runtime bounds check in CONF command (issue#3523) (nw)
* report unexpected CONF words if they are received (nw)
Diffstat (limited to 'src/devices/video/hp1ll3.h')
-rw-r--r-- | src/devices/video/hp1ll3.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/video/hp1ll3.h b/src/devices/video/hp1ll3.h index dfeb1e83551..b8c9b45e007 100644 --- a/src/devices/video/hp1ll3.h +++ b/src/devices/video/hp1ll3.h @@ -51,7 +51,7 @@ private: void line(int x_from, int y_from, int x_to, int y_to); void bitblt(int dstx, int dsty, uint16_t srcaddr, int width, int height, int op); - uint16_t m_conf[11], m_input[2]; + uint16_t m_conf[12], m_input[2]; int m_input_ptr, m_memory_ptr, m_conf_ptr; int m_command, m_horiz_pix_total, m_vert_pix_total; |