summaryrefslogtreecommitdiffstats
path: root/src/drawline.c
diff options
context:
space:
mode:
author=?UTF-8?q?Dundar=20G=C3=B6c?= <gocdundar@gmail.com>2022-01-29 15:19:23 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-29 15:19:23 +0000
commitd5cec1f1f055316c353cfa15ad8d5eb0952d50a0 (patch)
tree94d3ad44783e3442be7293edb3d5890ac08f0377 /src/drawline.c
parentf12b7815f6b55c3e2f37366aa45e723b1fcb2e9a (diff)
patch 8.2.4255: theoretical computation overflowv8.2.4255
Problem: Theoretical computation overflow. Solution: Perform multiplication in a wider type. (closes #9657)
Diffstat (limited to 'src/drawline.c')
-rw-r--r--src/drawline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drawline.c b/src/drawline.c
index 35658a4e88..441a81732b 100644
--- a/src/drawline.c
+++ b/src/drawline.c
@@ -2800,7 +2800,7 @@ win_line(
if (((wp->w_p_cuc
&& (int)wp->w_virtcol >= VCOL_HLC - eol_hl_off
&& (int)wp->w_virtcol <
- wp->w_width * (row - startrow + 1) + v
+ (long)wp->w_width * (row - startrow + 1) + v
&& lnum != wp->w_cursor.lnum)
|| draw_color_col
|| win_attr != 0)