From 3fb4f4762b49a5b5a54c17e0296e49ec815aee6c Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 17 Jul 2019 21:32:14 +0200 Subject: patch 8.1.1708: Coverity warns for using uninitialized variable Problem: Coverity warns for using uninitialized variable. Solution: Set the start col when col is set. --- src/beval.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/beval.c') diff --git a/src/beval.c b/src/beval.c index 193964667a..3dd9b6770c 100644 --- a/src/beval.c +++ b/src/beval.c @@ -72,6 +72,7 @@ find_word_under_cursor( } col = vcol2col(wp, lnum, col); + scol = col; if (VIsual_active && wp->w_buffer == curwin->w_buffer @@ -95,6 +96,7 @@ find_word_under_cursor( lbuf = vim_strnsave(lbuf + spos->col, len); lnum = spos->lnum; col = spos->col; + scol = col; } else { -- cgit v1.2.3