mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-06-12 03:02:27 -04:00
sixel: don’t crash when sixel image exceeds current sixel max height
When we try to resize a sixel past the current max height, we set col > image-width to signal this. This means ‘width’ could be smaller than ‘col’. When calculating how many sixels to emit in sixel_add_many(), we didnt’ account for this. The resulting value was -1, converted to ‘unsigned’. I.e. a very large value. This resulted in an assert triggering in sixel_add() in debug builds, and a crash in release builds.
This commit is contained in:
parent
3949e34271
commit
43a48f53d4
2 changed files with 2 additions and 1 deletions
|
|
@ -88,6 +88,7 @@
|
|||
built-in terminfo (accessed via XTGETTCAP).
|
||||
* Crash when interactively resizing the window with a very large
|
||||
scrollback.
|
||||
* Crash when a sixel image exceeds the current sixel max height.
|
||||
|
||||
[1173]: https://codeberg.org/dnkl/foot/issues/1173
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue