mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -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:
@@ -750,6 +750,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
3000,
|
||||||
/**/
|
/**/
|
||||||
2999,
|
2999,
|
||||||
/**/
|
/**/
|
||||||
|
@@ -9051,7 +9051,7 @@ compile_def_function(
|
|||||||
{
|
{
|
||||||
dfunc_T *dfunc = ((dfunc_T *)def_functions.ga_data)
|
dfunc_T *dfunc = ((dfunc_T *)def_functions.ga_data)
|
||||||
+ ufunc->uf_dfunc_idx;
|
+ ufunc->uf_dfunc_idx;
|
||||||
isn_T *instr_dest;
|
isn_T *instr_dest = NULL;
|
||||||
|
|
||||||
switch (compile_type)
|
switch (compile_type)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user