diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-08-14 22:56:27 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-08-14 22:56:27 +0200 |
commit | 4fa1019f8026cb383423fb4086cba7e308591e18 (patch) | |
tree | 00fd6228014866c3eb81bc82c0d237b60447e039 /src/version.c | |
parent | 05fbfdcda48a564e7a778c67251f732481f3ceaa (diff) | |
download | vim-git-4fa1019f8026cb383423fb4086cba7e308591e18.tar.gz |
patch 8.0.0942: using freed memory with ":terminal"v8.0.0942
Problem: Using freed memory with ":terminal" if an autocommand changes
'shell' when splitting the window. (Marius Gedminas)
Solution: Make a copy of 'shell'. (closes #1974)
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 d4617b0fd..263b00492 100644 --- a/src/version.c +++ b/src/version.c @@ -770,6 +770,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 942, +/**/ 941, /**/ 940, |