diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-02-21 22:28:51 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-02-21 22:28:51 +0100 |
commit | 527a2d86fb375fcc7b34e80fc47f4c7126fc12ba (patch) | |
tree | e2fe29e171da1e3b7d40c654bc348ba7009e1926 /src/version.c | |
parent | 1417031cfd31dd1af9bab686237cb1c8591e0a37 (diff) | |
download | vim-git-8.1.0968.tar.gz |
patch 8.1.0968: crash when using search pattern \%Ufffffc23v8.1.0968
Problem: Crash when using search pattern \%Ufffffc23.
Solution: Limit character to INT_MAX. (closes #4009)
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 825c5e54b..13f54e343 100644 --- a/src/version.c +++ b/src/version.c @@ -780,6 +780,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 968, +/**/ 967, /**/ 966, |