From 37bc089fb9953bf4a82a8a6eaf60fb2f6cea0784 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Wed, 1 Jul 2020 23:47:48 -0400 Subject: vim-patch:8.2.1104: Coverity warnts for possible NULL pointer use Problem: Coverity warnts for possible NULL pointer use. Solution: Check "pbyts" is not NULL. https://github.com/vim/vim/commit/11b6600c88165c70d9ccbbdd4d9c96e8266e365f --- src/nvim/spell.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/nvim') diff --git a/src/nvim/spell.c b/src/nvim/spell.c index df29124dea..95948dac78 100644 --- a/src/nvim/spell.c +++ b/src/nvim/spell.c @@ -3762,7 +3762,8 @@ static void suggest_trie_walk(suginfo_T *su, langp_T *lp, char_u *fword, bool so tword[sp->ts_twordlen] = NUL; if (sp->ts_prefixdepth <= PFD_NOTSPECIAL - && (sp->ts_flags & TSF_PREFIXOK) == 0) { + && (sp->ts_flags & TSF_PREFIXOK) == 0 + && pbyts != NULL) { // There was a prefix before the word. Check that the prefix // can be used with this word. // Count the length of the NULs in the prefix. If there are -- cgit