summaryrefslogtreecommitdiff
path: root/src/spellfile.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-02-03 20:14:23 +0100
committerBram Moolenaar <Bram@vim.org>2021-02-03 20:14:23 +0100
commit2c363a2e95ee0b366e72063d093d20e025ef4a66 (patch)
tree623706be72c60a05897fa5cc1ac8e6cd849f04ba /src/spellfile.c
parentfef8064b54ad0b1a7ce2f9cf024526627e6bdf57 (diff)
downloadvim-git-2c363a2e95ee0b366e72063d093d20e025ef4a66.tar.gz
patch 8.2.2462: Coverity warns for not checking for fseek() errorv8.2.2462
Problem: Coverity warns for not checking for fseek() error. Solution: Give an error message if fseek() fails.
Diffstat (limited to 'src/spellfile.c')
-rw-r--r--src/spellfile.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/spellfile.c b/src/spellfile.c
index 869db7f3f..20181695a 100644
--- a/src/spellfile.c
+++ b/src/spellfile.c
@@ -6277,7 +6277,11 @@ spell_add_word(
len, word, NameBuff);
}
}
- fseek(fd, fpos_next, SEEK_SET);
+ if (fseek(fd, fpos_next, SEEK_SET) != 0)
+ {
+ PERROR(_("Seek error in spellfile"));
+ break;
+ }
}
}
if (fd != NULL)