diff src/eval.c @ 7990:75de22db840d v7.4.1290

commit https://github.com/vim/vim/commit/ee5aeae22b8029fdb5ae97bb6ed8114a81e34c22 Author: Bram Moolenaar <Bram@vim.org> 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.
author Christian Brabandt <cb@256bit.org>
date Sun, 07 Feb 2016 22:45:04 +0100
parents 8e0d4cd8157a
children d244f2e46d69
line wrap: on
line diff
--- 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