From: Bram Moolenaar Date: Mon, 5 Sep 2022 09:55:27 +0000 (+0100) Subject: patch 9.0.0383: Coverity complains about unused value X-Git-Tag: v9.0.0383 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=963ab26842be22c0d210c3e950fecac28578f8be;p=vim patch 9.0.0383: Coverity complains about unused value Problem: Coverity complains about unused value. Solution: Use the value. --- diff --git a/src/spellfile.c b/src/spellfile.c index d650f870e..b248b07ee 100644 --- a/src/spellfile.c +++ b/src/spellfile.c @@ -404,7 +404,7 @@ spell_load_file( *
: */ for (i = 0; i < VIMSPELLMAGICL; ++i) - buf[i] = c = getc(fd); // + buf[i] = (c = getc(fd)) == EOF ? 0 : c; // if (STRNCMP(buf, VIMSPELLMAGIC, VIMSPELLMAGICL) != 0) { emsg(_(e_this_does_not_look_like_spell_file)); @@ -700,7 +700,7 @@ suggest_load_files(void) * : */ for (i = 0; i < VIMSUGMAGICL; ++i) - buf[i] = c = getc(fd); // + buf[i] = (c = getc(fd)) == EOF ? 0 : c; // if (STRNCMP(buf, VIMSUGMAGIC, VIMSUGMAGICL) != 0) { semsg(_(e_this_does_not_look_like_sug_file_str), diff --git a/src/version.c b/src/version.c index 596141307..767fdc580 100644 --- a/src/version.c +++ b/src/version.c @@ -703,6 +703,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 383, /**/ 382, /**/