Problem: Coverity complains about Null pointer dereferences
Solution: before accessing ccline->cmdbuff check that ccline is not NULL
Fixes: Coverity issue 1646601
closes: #17189
Signed-off-by: Christian Brabandt <cb@256bit.org>
}
// Compute the popup menu starting column
- compl_startcol = vim_strsize(ccline->cmdbuff) + 1;
+ compl_startcol = ccline == NULL ? 0 : vim_strsize(ccline->cmdbuff) + 1;
columns = vim_strsize(xp->xp_pattern);
if (showtail)
{
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1335,
/**/
1334,
/**/