mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
Prevent internal errors when terminal width or height are very small
(1x1 was fatal).
This commit is contained in:
parent
81ae381d6a
commit
d5acb25a08
@ -496,6 +496,8 @@ draw_text(struct terminal *term, int x, int y,
|
||||
assert(text && length >= 0);
|
||||
if_assert_failed return;
|
||||
|
||||
if (x >= term->width || y >= term->height) return;
|
||||
|
||||
#ifdef CONFIG_UTF8
|
||||
if (term->utf8) {
|
||||
draw_text_utf8(term, x, y, text, length, attr, color);
|
||||
|
@ -39,10 +39,10 @@ colspan_is_in_box(struct box *box, int x, int span)
|
||||
static inline void
|
||||
set_box(struct box *box, int x, int y, int width, int height)
|
||||
{
|
||||
box->x = x;
|
||||
box->y = y;
|
||||
box->width = width;
|
||||
box->height = height;
|
||||
box->x = int_max(0, x);
|
||||
box->y = int_max(0, y);
|
||||
box->width = int_max(0, width);
|
||||
box->height = int_max(0, height);
|
||||
}
|
||||
|
||||
static inline void
|
||||
|
Loading…
Reference in New Issue
Block a user