# HG changeset patch # User Christian Brabandt # Date 1454881504 -3600 # Node ID 75de22db840d6f80e429ce180edbcb666f5f5798 # Parent bae11b1fbe2fe04f143c6cc02c7d0e922c6b0d7c commit https://github.com/vim/vim/commit/ee5aeae22b8029fdb5ae97bb6ed8114a81e34c22 Author: Bram Moolenaar Date: Sun Feb 7 22:30:47 2016 +0100 patch 7.4.1290 Problem: Coverity complains about uneccessary check for NULL. Solution: Remove the check. diff --git a/src/eval.c b/src/eval.c --- a/src/eval.c +++ b/src/eval.c @@ -14375,8 +14375,7 @@ f_job_start(typval_T *argvars UNUSED, ty theend: #ifdef USE_ARGV - if (argv != NULL) - vim_free(argv); + vim_free(argv); #else vim_free(ga.ga_data); #endif diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -748,6 +748,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1290, +/**/ 1289, /**/ 1288,