diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-05-01 14:14:04 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-05-01 14:14:04 +0200 |
commit | beb9cb19c660484488a71a25eda46ab0fa579278 (patch) | |
tree | 2b24a6c30f11b044f33bd791015595a5cbe237b0 /src/version.c | |
parent | 66c0e70b806cd8afdc9da9ddae11945ddf29841a (diff) | |
download | vim-beb9cb19c660484488a71a25eda46ab0fa579278.zip |
patch 8.0.0595: Coverity warning for not checking return value
Problem: Coverity warning for not checking return value of dict_add().
Solution: Check the return value for FAIL.
Diffstat (limited to 'src/version.c')
-rw-r--r-- | src/version.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/version.c b/src/version.c index 6e2620d25..8895b73b0 100644 --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 595, +/**/ 594, /**/ 593, |