Patch 8.2.1103
Problem: Coverity reports an unnecessary NULL check.
Solution: Remove the check for NULL.
Files: src/eval.c
*** ../vim-8.2.1102/src/eval.c 2020-06-30 22:01:58.649556937 +0200
--- src/eval.c 2020-07-01 13:06:37.573523160 +0200
***************
*** 5246,5252 ****
int called_emsg_before = called_emsg;
evalarg_T evalarg;
! fill_evalarg_from_eap(&evalarg, eap, eap != NULL && eap->skip);
if (eap->skip)
++emsg_skip;
--- 5246,5252 ----
int called_emsg_before = called_emsg;
evalarg_T evalarg;
! fill_evalarg_from_eap(&evalarg, eap, eap->skip);
if (eap->skip)
++emsg_skip;
*** ../vim-8.2.1102/src/version.c 2020-07-01 13:03:58.190648795 +0200
--- src/version.c 2020-07-01 13:07:22.721221950 +0200
***************
*** 756,757 ****
--- 756,759 ----
{ /* Add new patch number below this line */
+ /**/
+ 1103,
/**/
--
Clothes make the man. Naked people have little or no influence on society.
-- Mark Twain (Samuel Clemens) (1835-1910)
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/202007011108.061B87cb1125233%40masaka.moolenaar.net.