From ee5aeae22b8029fdb5ae97bb6ed8114a81e34c22 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 7 Feb 2016 22:30:47 +0100 Subject: [PATCH] patch 7.4.1290 Problem: Coverity complains about uneccessary check for NULL. Solution: Remove the check. --- src/eval.c | 3 +-- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 2 deletions(-) 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, /**/ -- 2.50.1