mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 00:56:10 +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++) {
 | 
			
		||||
		py = at / sx;
 | 
			
		||||
		px = at % (py * sx);
 | 
			
		||||
		px = at - (py * sx);
 | 
			
		||||
 | 
			
		||||
		grid_get_cell(gd, px, py, &gc);
 | 
			
		||||
		buf = xrealloc(buf, len + gc.data.size + 1);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user