diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-05-15 08:45:13 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-05-15 08:45:13 +0200 |
commit | 253f9128779f315ea670f9b4a17446b7b4c74927 (patch) | |
tree | 39b5de82be5caa092302843d845e9ada0a966e12 /src/version.c | |
parent | 4475b623960671898dac6a72b13a8d140402afa6 (diff) | |
download | vim-253f9128779f315ea670f9b4a17446b7b4c74927.zip |
patch 8.0.0597: off-by-one error in size computation
Problem: Off-by-one error in buffer size computation.
Solution: Use ">=" instead of ">". (Lemonboy, closes #1694)
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 f31a946dc..dd39fcdac 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 */ /**/ + 597, +/**/ 596, /**/ 595, |