# HG changeset patch # User Bram Moolenaar # Date 1662238803 -7200 # Node ID faf8de1c2f0d22e487cb9ce276f3b040ea0d56da # Parent 85efdf8771285c09661e315d869fbce897c883eb patch 9.0.0371: compiler warning for uninitialized variable Commit: https://github.com/vim/vim/commit/06fef1b2bdc07c6170b178e34b4712c21bd81a2e Author: Bram Moolenaar Date: Sat Sep 3 21:53:28 2022 +0100 patch 9.0.0371: compiler warning for uninitialized variable Problem: Compiler warning for uninitialized variable. Solution: Initialize the variable. (John Marriott) diff --git a/src/eval.c b/src/eval.c --- a/src/eval.c +++ b/src/eval.c @@ -694,7 +694,7 @@ deref_function_name( { typval_T ref; char_u *name = *arg; - int save_flags; + int save_flags = 0; ref.v_type = VAR_UNKNOWN; if (evalarg != NULL) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -708,6 +708,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 371, +/**/ 370, /**/ 369,