comparison src/scriptfile.c @ 29834:b772932fc721 v9.0.0256

patch 9.0.0256: compiler warning for uninitialized variables Commit: https://github.com/vim/vim/commit/5214b294615718cc3f0d2248b76e9970b9fe9d45 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Aug 24 17:32:35 2022 +0100 patch 9.0.0256: compiler warning for uninitialized variables Problem: Compiler warning for uninitialized variables. Solution: Initilize the variables.
author Bram Moolenaar <Bram@vim.org>
date Wed, 24 Aug 2022 18:45:03 +0200
parents 4a549427855d
children 8dca33bca038
comparison
equal deleted inserted replaced
29833:0a846de13277 29834:b772932fc721
1356 int clearvars UNUSED) 1356 int clearvars UNUSED)
1357 { 1357 {
1358 source_cookie_T cookie; 1358 source_cookie_T cookie;
1359 char_u *p; 1359 char_u *p;
1360 char_u *fname_not_fixed = NULL; 1360 char_u *fname_not_fixed = NULL;
1361 char_u *fname_exp; 1361 char_u *fname_exp = NULL;
1362 char_u *firstline = NULL; 1362 char_u *firstline = NULL;
1363 int retval = FAIL; 1363 int retval = FAIL;
1364 sctx_T save_current_sctx; 1364 sctx_T save_current_sctx;
1365 #ifdef FEAT_EVAL 1365 #ifdef FEAT_EVAL
1366 funccal_entry_T funccalp_entry; 1366 funccal_entry_T funccalp_entry;
1367 int save_debug_break_level = debug_break_level; 1367 int save_debug_break_level = debug_break_level;
1368 int sid; 1368 int sid = -1;
1369 scriptitem_T *si = NULL; 1369 scriptitem_T *si = NULL;
1370 int save_estack_compiling = estack_compiling; 1370 int save_estack_compiling = estack_compiling;
1371 ESTACK_CHECK_DECLARATION 1371 ESTACK_CHECK_DECLARATION
1372 #endif 1372 #endif
1373 #ifdef STARTUPTIME 1373 #ifdef STARTUPTIME