diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-07-20 22:11:06 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-07-20 22:11:06 +0200 |
commit | 19df5cc04de93519145901d9cbc78c44d0c47c5d (patch) | |
tree | 5290dd9e2e1c09cd992112f2812a91abffbf7b50 /src/version.c | |
parent | 397eadbe25370394e0dc3cb18766533a15b8d1c0 (diff) | |
download | vim-git-19df5cc04de93519145901d9cbc78c44d0c47c5d.tar.gz |
patch 7.4.2083v7.4.2083
Problem: Coverity complains about not restoring a value.
Solution: Restore the value, although it's not really needed. Change return
to jump to cleanup, might leak memory.
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 acc5c33d1..69da11921 100644 --- a/src/version.c +++ b/src/version.c @@ -759,6 +759,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2083, +/**/ 2082, /**/ 2081, |