mirror of
https://github.com/vim/vim.git
synced 2025-09-26 04:04:07 -04:00
patch 7.4.1290
Problem: Coverity complains about uneccessary check for NULL. Solution: Remove the check.
This commit is contained in:
@@ -14375,8 +14375,7 @@ f_job_start(typval_T *argvars UNUSED, typval_T *rettv)
|
||||
|
||||
theend:
|
||||
#ifdef USE_ARGV
|
||||
if (argv != NULL)
|
||||
vim_free(argv);
|
||||
vim_free(argv);
|
||||
#else
|
||||
vim_free(ga.ga_data);
|
||||
#endif
|
||||
|
@@ -747,6 +747,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
1290,
|
||||
/**/
|
||||
1289,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user