mirror of
https://github.com/vim/vim.git
synced 2025-09-28 04:24:06 -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:
@@ -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)
|
||||
|
Reference in New Issue
Block a user