From: Bram Moolenaar Date: Sun, 7 Feb 2016 21:30:47 +0000 (+0100) Subject: patch 7.4.1290 X-Git-Tag: v7.4.1290 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ee5aeae22b8029fdb5ae97bb6ed8114a81e34c22;p=vim 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 index e3edff6df..b544fc349 100644 --- a/src/eval.c +++ b/src/eval.c @@ -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 diff --git a/src/version.c b/src/version.c index b9ca10768..66739aa29 100644 --- a/src/version.c +++ b/src/version.c @@ -747,6 +747,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1290, /**/ 1289, /**/