mirror of
https://github.com/tmux/tmux.git
synced 2025-09-03 14:27:09 +00:00
Do not attempt to divide by zero when working out copy position.
This commit is contained in:
@ -3167,7 +3167,7 @@ window_copy_match_at_cursor(struct window_copy_mode_data *data)
|
|||||||
*/
|
*/
|
||||||
for (at = start; at <= end; at++) {
|
for (at = start; at <= end; at++) {
|
||||||
py = at / sx;
|
py = at / sx;
|
||||||
px = at % (py * sx);
|
px = at - (py * sx);
|
||||||
|
|
||||||
grid_get_cell(gd, px, py, &gc);
|
grid_get_cell(gd, px, py, &gc);
|
||||||
buf = xrealloc(buf, len + gc.data.size + 1);
|
buf = xrealloc(buf, len + gc.data.size + 1);
|
||||||
|
Reference in New Issue
Block a user