mirror of
https://github.com/tmux/tmux.git
synced 2025-01-13 03:48:51 +00:00
Sync OpenBSD patchset 1016:
Enforce history-limit option when clearing the screen, memory leak spotted by R I Pienaar.
This commit is contained in:
parent
e4a7cefe0c
commit
c08a532440
@ -94,8 +94,10 @@ grid_view_clear_history(struct grid *gd)
|
||||
return;
|
||||
|
||||
/* Scroll the lines into the history. */
|
||||
for (yy = 0; yy < last; yy++)
|
||||
for (yy = 0; yy < last; yy++) {
|
||||
grid_collect_history(gd);
|
||||
grid_scroll_history(gd);
|
||||
}
|
||||
}
|
||||
|
||||
/* Clear area. */
|
||||
|
Loading…
Reference in New Issue
Block a user