Skip to content

Commit

Permalink
patch 8.2.4637: warning for using uninitialized variable
Browse files Browse the repository at this point in the history
Problem:    Warning for using uninitialized variable. (Tony Mechelynck)
Solution:   Initialize it.
  • Loading branch information
brammool committed Mar 27, 2022
1 parent 1501b63 commit 565d127
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/ex_docmd.c
Original file line number Diff line number Diff line change
Expand Up @@ -2782,7 +2782,7 @@ parse_command_modifiers(
cmdmod_T *cmod,
int skip_only)
{
char_u *cmd_start;
char_u *cmd_start = NULL;
char_u *p;
int starts_with_colon = FALSE;
int vim9script = in_vim9script();
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -750,6 +750,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
4637,
/**/
4636,
/**/
Expand Down

0 comments on commit 565d127

Please sign in to comment.