forked from aniani/vim
patch 9.0.0371: compiler warning for uninitialized variable
Problem: Compiler warning for uninitialized variable. Solution: Initialize the variable. (John Marriott)
This commit is contained in:
parent
1d84f7608f
commit
06fef1b2bd
@ -694,7 +694,7 @@ deref_function_name(
|
|||||||
{
|
{
|
||||||
typval_T ref;
|
typval_T ref;
|
||||||
char_u *name = *arg;
|
char_u *name = *arg;
|
||||||
int save_flags;
|
int save_flags = 0;
|
||||||
|
|
||||||
ref.v_type = VAR_UNKNOWN;
|
ref.v_type = VAR_UNKNOWN;
|
||||||
if (evalarg != NULL)
|
if (evalarg != NULL)
|
||||||
|
@ -707,6 +707,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 */
|
||||||
|
/**/
|
||||||
|
371,
|
||||||
/**/
|
/**/
|
||||||
370,
|
370,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user