diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-01-18 00:20:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-18 00:20:38 +0100 |
commit | 8f9fc1f692292efe63b9e71bb6f6340bccf2b37f (patch) | |
tree | caafab85917d2ce0de1289d67704648ee2345938 /src/nvim/ex_cmds.c | |
parent | 8093cbd8e8ca06ce5c9d8814fc6d94cb2304133a (diff) | |
parent | aa39fc56f68e2087a2327bcd03cc5f3d2dc9a696 (diff) | |
download | rneovim-8f9fc1f692292efe63b9e71bb6f6340bccf2b37f.tar.gz rneovim-8f9fc1f692292efe63b9e71bb6f6340bccf2b37f.tar.bz2 rneovim-8f9fc1f692292efe63b9e71bb6f6340bccf2b37f.zip |
Merge #9508 from justinmk/pvs-warnings
Diffstat (limited to 'src/nvim/ex_cmds.c')
-rw-r--r-- | src/nvim/ex_cmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index 85844c37bd..c574ac10e9 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -4895,7 +4895,7 @@ int find_help_tags(const char_u *arg, int *num_matches, char_u ***matches, } } - *matches = (char_u **)""; + *matches = NULL; *num_matches = 0; int flags = TAG_HELP | TAG_REGEXP | TAG_NAMES | TAG_VERBOSE; if (keep_lang) { |