aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLewis Russell <lewis6991@gmail.com>2023-02-27 22:16:12 +0000
committerGitHub <noreply@github.com>2023-02-27 22:16:12 +0000
commit8ecd129f1ef92aefea506247677f2693c5db9efd (patch)
treeb83ee00c80b4e95e1969f6db9f624db8219845fa
parentb50ee4a8dc4306e4be78ac33fb74b21dc6be5538 (diff)
downloadrneovim-8ecd129f1ef92aefea506247677f2693c5db9efd.tar.gz
rneovim-8ecd129f1ef92aefea506247677f2693c5db9efd.tar.bz2
rneovim-8ecd129f1ef92aefea506247677f2693c5db9efd.zip
fix: address -Wmaybe-uninitialized warnings (#22436)
-rw-r--r--src/nvim/ex_getln.c2
-rw-r--r--src/nvim/spellsuggest.c2
-rw-r--r--src/nvim/window.c4
3 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c
index af26fe8a1c..a7f488458e 100644
--- a/src/nvim/ex_getln.c
+++ b/src/nvim/ex_getln.c
@@ -2456,7 +2456,7 @@ static bool cmdpreview_may_show(CommandLineState *s)
CpInfo cpinfo;
bool icm_split = *p_icm == 's'; // inccommand=split
buf_T *cmdpreview_buf;
- win_T *cmdpreview_win;
+ win_T *cmdpreview_win = NULL;
emsg_silent++; // Block error reporting as the command may be incomplete,
// but still update v:errmsg
diff --git a/src/nvim/spellsuggest.c b/src/nvim/spellsuggest.c
index d176a65228..ea2d5e6ff7 100644
--- a/src/nvim/spellsuggest.c
+++ b/src/nvim/spellsuggest.c
@@ -1209,7 +1209,7 @@ static void suggest_trie_walk(suginfo_T *su, langp_T *lp, char *fword, bool soun
// The loop may take an indefinite amount of time. Break out after some
// time.
- proftime_T time_limit;
+ proftime_T time_limit = 0;
if (spell_suggest_timeout > 0) {
time_limit = profile_setlimit(spell_suggest_timeout);
}
diff --git a/src/nvim/window.c b/src/nvim/window.c
index 0a4d36acb2..6a8d1cf740 100644
--- a/src/nvim/window.c
+++ b/src/nvim/window.c
@@ -1899,8 +1899,8 @@ static void win_rotate(bool upwards, int count)
}
}
- win_T *wp1;
- win_T *wp2;
+ win_T *wp1 = NULL;
+ win_T *wp2 = NULL;
while (count--) {
if (upwards) { // first window becomes last window