mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-05-13 08:26:56 +00:00
Guard line buffer copy bounds
This commit is contained in:
parent
dc29e102cc
commit
5a74cb126f
2 changed files with 3 additions and 0 deletions
|
|
@ -279,6 +279,8 @@ class TestDataTypes(BaseTest):
|
|||
l2 = lb.create_line_copy(2)
|
||||
lb.copy_line_to(1, l2)
|
||||
self.ae(l2, lb2.line(2))
|
||||
with self.assertRaises(ValueError):
|
||||
lb.copy_line_to(lb.ynum, l2)
|
||||
lb.clear_line(0)
|
||||
self.ae(lb.line(0), LineBuf(1, lb.xnum).create_line_copy(0))
|
||||
lb = filled_line_buf(5, 5, filled_cursor())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue