Patch 9.0.0072 (after 9.0.0067)
Problem: Compiler warning for uninitialized variable.
Solution: Initialize it. (John Marriott)
Files: src/drawline.c
*** ../vim-9.0.0071/src/drawline.c 2022-07-25 18:13:33.046580756 +0100
--- src/drawline.c 2022-07-25 21:11:49.462293072 +0100
***************
*** 819,825 ****
{
char_u *prev_ptr = ptr;
chartabsize_T cts;
! int charsize;
init_chartabsize_arg(&cts, wp, lnum, vcol, line, ptr);
while (cts.cts_vcol < v && *cts.cts_ptr != NUL)
--- 819,825 ----
{
char_u *prev_ptr = ptr;
chartabsize_T cts;
! int charsize = 0;
init_chartabsize_arg(&cts, wp, lnum, vcol, line, ptr);
while (cts.cts_vcol < v && *cts.cts_ptr != NUL)
*** ../vim-9.0.0071/src/version.c 2022-07-25 19:50:53.954361274 +0100
--- src/version.c 2022-07-25 21:12:53.046258579 +0100
***************
*** 737,738 ****
--- 737,740 ----
{ /* Add new patch number below this line */
+ /**/
+ 72,
/**/
--
hundred-and-one symptoms of being an internet addict:
124. You begin conversations with, "Who is your internet service provider?"
/// 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/20220725201613.530DB1C066C%40moolenaar.net.