Skip to content

Commit ee5aeae

Browse files
committed
patch 7.4.1290
Problem: Coverity complains about uneccessary check for NULL. Solution: Remove the check.
1 parent 0fa98e7 commit ee5aeae

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/eval.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14375,8 +14375,7 @@ f_job_start(typval_T *argvars UNUSED, typval_T *rettv)
1437514375

1437614376
theend:
1437714377
#ifdef USE_ARGV
14378-
if (argv != NULL)
14379-
vim_free(argv);
14378+
vim_free(argv);
1438014379
#else
1438114380
vim_free(ga.ga_data);
1438214381
#endif

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -747,6 +747,8 @@ static char *(features[]) =
747747

748748
static int included_patches[] =
749749
{ /* Add new patch number below this line */
750+
/**/
751+
1290,
750752
/**/
751753
1289,
752754
/**/

0 commit comments

Comments
 (0)