mirror of
https://github.com/tmate-io/tmate.git
synced 2026-07-22 18:47:14 +00:00
Avoid crashing in copy-mode during resize, when our history-viewing offset is larger than the new total number of history lines.
This commit is contained in:
parent
18ed37622e
commit
342a47bc77
1 changed files with 3 additions and 1 deletions
|
|
@ -1,4 +1,4 @@
|
|||
/* $Id: window-copy.c,v 1.115 2010-04-06 22:02:52 nicm Exp $ */
|
||||
/* $Id: window-copy.c,v 1.116 2010-04-28 14:29:27 micahcowan Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
|
|
@ -340,6 +340,8 @@ window_copy_resize(struct window_pane *wp, u_int sx, u_int sy)
|
|||
data->cy = sy - 1;
|
||||
if (data->cx > sx)
|
||||
data->cx = sx;
|
||||
if (data->oy > screen_hsize(data->backing))
|
||||
data->oy = screen_hsize(data->backing);
|
||||
|
||||
window_copy_clear_selection(wp);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue