diff options
author | lonerover <pathfinder1644@yahoo.com> | 2017-03-27 01:04:57 +0800 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-03-26 19:04:57 +0200 |
commit | f9a31e98505c0f5e83dd3ba957fbd0f4b150d30c (patch) | |
tree | 56e27bd3cf62519009c6477d35139e959d0f5647 /src/nvim/version.c | |
parent | 43a99f77a82e3de980798383ae8a4134953ece06 (diff) | |
download | rneovim-f9a31e98505c0f5e83dd3ba957fbd0f4b150d30c.tar.gz rneovim-f9a31e98505c0f5e83dd3ba957fbd0f4b150d30c.tar.bz2 rneovim-f9a31e98505c0f5e83dd3ba957fbd0f4b150d30c.zip |
vim-patch:7.4.2349 (#6368)
Problem: Valgrind reports using uninitialzed memory. (Dominique Pelle)
Solution: Check the length before checking for a NUL.
https://github.com/vim/vim/commit/2321ca2a78286bc026fa7f407281ddbeb04114bb
Diffstat (limited to 'src/nvim/version.c')
-rw-r--r-- | src/nvim/version.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/version.c b/src/nvim/version.c index db3b9b51b2..a354634218 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -92,7 +92,7 @@ static int included_patches[] = { // 2352 NA // 2351 NA // 2350, - // 2349, + 2349, 2348, 2347, 2346, |