mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-05-30 21:38:03 -04:00
sixel: clamp max width/height in 'CSI ? 2 ; 3 ; W ; H S'
This ensures the user cannot raise the maximum sixel size, where width*height cannot be represented as an integer. Note, we should consider moving all sixel width/height variables from int to size_t. But, since it doesn't make any sense with overly large sixel images, clamping the max width/height is enough. Add a static_assert() that checks SIXEL_MAX_WIDTH * SIXEL_MAX_HEIGHT doesn't overflow. Closes #2343
This commit is contained in:
parent
4bf60d0fbc
commit
92187d2e4e
3 changed files with 14 additions and 5 deletions
8
sixel.c
8
sixel.c
|
|
@ -2207,9 +2207,11 @@ sixel_geometry_reset(struct terminal *term)
|
|||
void
|
||||
sixel_geometry_set(struct terminal *term, unsigned width, unsigned height)
|
||||
{
|
||||
LOG_DBG("sixel geometry set to %ux%u", width, height);
|
||||
term->sixel.max_width = width;
|
||||
term->sixel.max_height = height;
|
||||
const unsigned new_width = min(width, SIXEL_MAX_WIDTH);
|
||||
const unsigned new_height = min(height, SIXEL_MAX_HEIGHT);
|
||||
LOG_DBG("sixel geometry set to %ux%u", new_width, new_height);
|
||||
term->sixel.max_width = new_width;
|
||||
term->sixel.max_height = new_height;
|
||||
sixel_geometry_report_current(term);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue