diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-02-11 15:07:22 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-02-11 15:07:22 +0100 |
commit | a0221df149aa3773450b3f930299a409dd75bd5b (patch) | |
tree | 3565d5f97f29d9cca54318bdc72fcc1da6bc366e /src/version.c | |
parent | 0549a1e184d33674f4c2b8fb44ccdf6b9b9808a3 (diff) | |
download | vim-a0221df149aa3773450b3f930299a409dd75bd5b.zip |
patch 8.0.1501: out-of-memory situation not correctly handled
Problem: Out-of-memory situation not correctly handled. (Coverity)
Solution: Check for NULL value.
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 4cbfc4709..d96f896ee 100644 --- a/src/version.c +++ b/src/version.c @@ -772,6 +772,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1501, +/**/ 1500, /**/ 1499, |