diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-11-11 15:37:45 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-11-11 15:37:45 +0100 |
commit | d09a206ee94ccb653707ce9b6e536d4d58886e04 (patch) | |
tree | 9a75735265a1b4c535abf5af8cdf0aabf53e3713 /nsis | |
parent | 462455ee8b81cb5709007d91248ac4a88308d6e9 (diff) | |
download | vim-git-d09a206ee94ccb653707ce9b6e536d4d58886e04.tar.gz |
patch 8.0.1285: occasional crash when using a channelv8.0.1285
Problem: Occasional crash when using a channel. (Marek)
Solution: Decrement reference count later. (closes #2315)
Diffstat (limited to 'nsis')
-rw-r--r-- | nsis/gvim.nsi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/nsis/gvim.nsi b/nsis/gvim.nsi index 4e9bbfb45..871ce673a 100644 --- a/nsis/gvim.nsi +++ b/nsis/gvim.nsi @@ -268,6 +268,9 @@ Section "Vim executables and runtime files" SetOutPath $0\autoload File ${VIMRT}\autoload\*.* + SetOutPath $0\autoload\dist + File ${VIMRT}\autoload\dist\*.* + SetOutPath $0\autoload\xml File ${VIMRT}\autoload\xml\*.* |