0
0
mirror of https://github.com/vim/vim.git synced 2025-09-29 04:34:16 -04:00

patch 8.0.1622: possible NULL pointer dereference

Problem:    Possible NULL pointer dereferencey. (Coverity)
Solution:   Reverse the check for a NULL pointer.
This commit is contained in:
Bram Moolenaar
2018-03-20 13:30:42 +01:00
parent 6185903e3d
commit 6ed86ad170
2 changed files with 3 additions and 1 deletions

View File

@@ -4256,7 +4256,7 @@ ex_vimgrep(exarg_T *eap)
goto theend;
}
if (s != NULL && *s == NUL)
if (s == NULL || *s == NUL)
{
/* Pattern is empty, use last search pattern. */
if (last_search_pat() == NULL)

View File

@@ -766,6 +766,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1622,
/**/
1621,
/**/