diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-08-14 21:46:07 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-08-14 21:46:07 +0100 |
commit | dbdd16b62560413abcc3c8e893cc3010ccf31666 (patch) | |
tree | 25233801194a5fefcf40f3cda2530b3d94286ed9 /src/version.c | |
parent | d1d8f6bacb489036d0fd479c9dd3c0102c988889 (diff) | |
download | vim-git-9.0.0212.tar.gz |
patch 9.0.0212: invalid memory access when compiling :unletv9.0.0212
Problem: Invalid memory access when compiling :unlet.
Solution: Don't read past the end of the line.
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 3f0bf5151..7de715815 100644 --- a/src/version.c +++ b/src/version.c @@ -736,6 +736,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 212, +/**/ 211, /**/ 210, |