summaryrefslogtreecommitdiffstats
path: root/src/spell.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-06-09 19:54:24 +0100
committerBram Moolenaar <Bram@vim.org>2022-06-09 19:54:24 +0100
commit2813f38e021c6e6581c0c88fcf107e41788bc835 (patch)
treeb8a6f78b5fe373c594ea6e7719f86b99495de8ee /src/spell.c
parentf5465ff5c83f5a8a3e05bec64a0c013e5bdeb46e (diff)
patch 8.2.5072: using uninitialized value and freed memory in spell commandv8.2.5072
Problem: Using uninitialized value and freed memory in spell command. Solution: Initialize "attr". Check for empty line early.
Diffstat (limited to 'src/spell.c')
-rw-r--r--src/spell.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/spell.c b/src/spell.c
index 48a2203e3f..d866a2df72 100644
--- a/src/spell.c
+++ b/src/spell.c
@@ -1275,7 +1275,7 @@ spell_move_to(
char_u *line;
char_u *p;
char_u *endp;
- hlf_T attr;
+ hlf_T attr = 0;
int len;
#ifdef FEAT_SYN_HL
int has_syntax = syntax_present(wp);
@@ -1308,6 +1308,8 @@ spell_move_to(
while (!got_int)
{
+ int empty_line;
+
line = ml_get_buf(wp->w_buffer, lnum, FALSE);
len = (int)STRLEN(line);
@@ -1340,7 +1342,9 @@ spell_move_to(
}
// Copy the line into "buf" and append the start of the next line if
- // possible.
+ // possible. Note: this ml_get_buf() may make "line" invalid, check
+ // for empty line first.
+ empty_line = *skipwhite(line) == NUL;
STRCPY(buf, line);
if (lnum < wp->w_buffer->b_ml.ml_line_count)
spell_cat_line(buf + STRLEN(buf),
@@ -1487,7 +1491,7 @@ spell_move_to(
--capcol;
// But after empty line check first word in next line
- if (*skipwhite(line) == NUL)
+ if (empty_line)
capcol = 0;
}