diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-03-16 20:27:38 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-03-16 20:27:38 +0100 |
commit | 7f009dfa064240d9024b76212535a35231912511 (patch) | |
tree | d63e1265b93f65f405c08df6500e915776e7cc57 /src/version.c | |
parent | c0300633292ee648c7154a7828eb1c76637bd9af (diff) | |
download | vim-git-8.2.0394.tar.gz |
patch 8.2.0394: Coverity complains about using NULL pointerv8.2.0394
Problem: Coverity complains about using NULL pointer.
Solution: Use empty string when option value is NULL.
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 b0497a52c..717ca669e 100644 --- a/src/version.c +++ b/src/version.c @@ -739,6 +739,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 394, +/**/ 393, /**/ 392, |