mirror of
https://github.com/neovim/neovim.git
synced 2025-10-04 17:06:30 +00:00
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.
11b6600c88
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user