mirror of
https://github.com/tmux/tmux.git
synced 2025-01-26 07:58:55 +00:00
Do not attempt to divide by zero when working out copy position.
This commit is contained in:
parent
26e8e467e8
commit
4589297e43
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user