0
0
mirror of https://github.com/vim/vim.git synced 2025-07-24 10:45:12 -04:00

patch 8.2.3000: Vim9: warning for uninitialized variable

Problem:    Vim9: warning for uninitialized variable.
Solution:   Add initialization. (John Marriott)
This commit is contained in:
Bram Moolenaar 2021-06-15 10:22:17 +02:00
parent 47f6db9089
commit 3b814af7e1
2 changed files with 3 additions and 1 deletions

View File

@ -750,6 +750,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
3000,
/**/
2999,
/**/

View File

@ -9051,7 +9051,7 @@ compile_def_function(
{
dfunc_T *dfunc = ((dfunc_T *)def_functions.ga_data)
+ ufunc->uf_dfunc_idx;
isn_T *instr_dest;
isn_T *instr_dest = NULL;
switch (compile_type)
{