mirror of
https://github.com/tmate-io/tmate.git
synced 2025-07-01 06:39:59 +02:00
Fix two copy/paste bugs: forbid zero-length buffers to prevent a fatal error
when trying to paste them, found by me, and miscalculation of the start/end causing random fatal errors when copying in copy-mode, reported by sthen. ok sthen "put it in" deraadt
This commit is contained in:
@ -423,7 +423,7 @@ window_copy_copy_selection(struct window_pane *wp, struct client *c)
|
||||
/* Find start and end. */
|
||||
xx = data->cx + data->ox;
|
||||
yy = screen_hsize(&wp->base) + data->cy - data->oy;
|
||||
if (xx < data->selx || (yy == data->sely && xx < data->selx)) {
|
||||
if (yy < data->sely || (yy == data->sely && xx < data->selx)) {
|
||||
sx = xx; sy = yy;
|
||||
ex = data->selx; ey = data->sely;
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user