0
0
mirror of https://github.com/vim/vim.git synced 2025-09-26 04:04:07 -04:00

patch 7.4.1290

Problem:    Coverity complains about uneccessary check for NULL.
Solution:   Remove the check.
This commit is contained in:
Bram Moolenaar
2016-02-07 22:30:47 +01:00
parent 0fa98e7b85
commit ee5aeae22b
2 changed files with 3 additions and 2 deletions

View File

@@ -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