comparison 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
comparison
equal deleted inserted replaced
7989:bae11b1fbe2f 7990:75de22db840d
14373 mch_start_job(cmd, job); 14373 mch_start_job(cmd, job);
14374 #endif 14374 #endif
14375 14375
14376 theend: 14376 theend:
14377 #ifdef USE_ARGV 14377 #ifdef USE_ARGV
14378 if (argv != NULL) 14378 vim_free(argv);
14379 vim_free(argv);
14380 #else 14379 #else
14381 vim_free(ga.ga_data); 14380 vim_free(ga.ga_data);
14382 #endif 14381 #endif
14383 } 14382 }
14384 14383