Patch 9.0.0435
Problem: Compiler warning for uninitialized variable.
Solution: Initialize it.
Files: src/eval.c
*** ../vim-9.0.0434/src/eval.c 2022-09-10 10:42:16.128909156 +0100
--- src/eval.c 2022-09-10 12:34:58.315335929 +0100
***************
*** 1121,1127 ****
var2.v_type = VAR_UNKNOWN;
while (*p == '[' || (*p == '.' && p[1] != '=' && p[1] != '.'))
{
! int r;
if (*p == '.' && lp->ll_tv->v_type != VAR_DICT)
{
--- 1121,1127 ----
var2.v_type = VAR_UNKNOWN;
while (*p == '[' || (*p == '.' && p[1] != '=' && p[1] != '.'))
{
! int r = OK;
if (*p == '.' && lp->ll_tv->v_type != VAR_DICT)
{
*** ../vim-9.0.0434/src/version.c 2022-09-10 11:04:19.140524645 +0100
--- src/version.c 2022-09-10 12:35:32.443262473 +0100
***************
*** 705,706 ****
--- 705,708 ----
{ /* Add new patch number below this line */
+ /**/
+ 435,
/**/
--
Everyone has a photographic memory. Some don't have film.
/// 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/20220910113759.07F6F1C0CF3%40moolenaar.net.