We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fef8064 commit 2c363a2Copy full SHA for 2c363a2
2 files changed
src/spellfile.c
@@ -6277,7 +6277,11 @@ spell_add_word(
6277
len, word, NameBuff);
6278
}
6279
6280
- fseek(fd, fpos_next, SEEK_SET);
+ if (fseek(fd, fpos_next, SEEK_SET) != 0)
6281
+ {
6282
+ PERROR(_("Seek error in spellfile"));
6283
+ break;
6284
+ }
6285
6286
6287
if (fd != NULL)
src/version.c
@@ -750,6 +750,8 @@ static char *(features[]) =
750
751
static int included_patches[] =
752
{ /* Add new patch number below this line */
753
+/**/
754
+ 2462,
755
/**/
756
2461,
757
0 commit comments