Patch 8.2.4469
Problem: Coverity warns for uninitialized variable.
Solution: Set the value to zero.
Files: src/ex_getln.c
*** ../vim-8.2.4468/src/ex_getln.c 2022-02-16 12:44:26.129908861 +0000
--- src/ex_getln.c 2022-02-25 20:55:17.627122971 +0000
***************
*** 4672,4678 ****
{
char_u *xp_name;
int xp_namelen;
! long argt;
// input() with a third argument: completion
rettv->vval.v_string = NULL;
--- 4672,4678 ----
{
char_u *xp_name;
int xp_namelen;
! long argt = 0;
// input() with a third argument: completion
rettv->vval.v_string = NULL;
*** ../vim-8.2.4468/src/version.c 2022-02-25 20:48:22.135350734 +0000
--- src/version.c 2022-02-25 20:55:53.995090492 +0000
***************
*** 756,757 ****
--- 756,759 ----
{ /* Add new patch number below this line */
+ /**/
+ 4469,
/**/
--
A meeting is an event at which the minutes are kept and the hours are lost.
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ 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/20220225205832.AB9811C1149%40moolenaar.net.