Patch 8.2.4661
Problem: Coverity warning for using uninitialized variable.
Solution: Initialize variable to NULL.
Files: src/vim9expr.c
*** ../vim-8.2.4660/src/vim9expr.c 2022-03-31 20:02:52.422045605 +0100
--- src/vim9expr.c 2022-04-01 13:21:50.928738330 +0100
***************
*** 272,278 ****
char_u *p = skipwhite(*end);
char_u *exp_name;
int cc;
! ufunc_T *ufunc;
type_T *type;
int done = FALSE;
int res = OK;
--- 272,278 ----
char_u *p = skipwhite(*end);
char_u *exp_name;
int cc;
! ufunc_T *ufunc = NULL;
type_T *type;
int done = FALSE;
int res = OK;
*** ../vim-8.2.4660/src/version.c 2022-04-01 12:04:53.171621974 +0100
--- src/version.c 2022-04-01 13:23:31.400577170 +0100
***************
*** 752,753 ****
--- 752,755 ----
{ /* Add new patch number below this line */
+ /**/
+ 4661,
/**/
--
An indication you must be a manager:
You can explain to somebody the difference between "re-engineering",
"down-sizing", "right-sizing", and "firing people's asses".
/// 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/20220401122427.B993A1C14D9%40moolenaar.net.