mirror of
https://github.com/tmux/tmux.git
synced 2024-11-05 18:38:48 +00:00
Restore a check to stop scrolled lines becoming larger than total lines,
fixes a crash reported by Thomas Sattler.
This commit is contained in:
parent
92da105b58
commit
6d071c468c
2
grid.c
2
grid.c
@ -1284,6 +1284,8 @@ grid_reflow(struct grid *gd, u_int sx)
|
||||
if (target->sy < gd->sy)
|
||||
grid_reflow_add(target, gd->sy - target->sy);
|
||||
gd->hsize = target->sy - gd->sy;
|
||||
if (gd->hscrolled > gd->hsize)
|
||||
gd->hscrolled = gd->hsize;
|
||||
free(gd->linedata);
|
||||
gd->linedata = target->linedata;
|
||||
free(target);
|
||||
|
Loading…
Reference in New Issue
Block a user