0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 8.1.2267: compiler warning for uninitialized variable

Problem:    Compiler warning for uninitialized variable. (Tony Mechelynck)
Solution:   Rearrange the code.
This commit is contained in:
Bram Moolenaar
2019-11-06 23:26:20 +01:00
parent f8b036bcae
commit 3b991527e8
2 changed files with 6 additions and 3 deletions

View File

@@ -3087,11 +3087,12 @@ buflist_list(exarg_T *eap)
qsort(buflist.ga_data, (size_t)buflist.ga_len,
sizeof(buf_T *), buf_compare);
p = buflist_data = (buf_T **)buflist.ga_data;
buf = *p;
buflist_data = (buf_T **)buflist.ga_data;
buf = *buflist_data;
}
p = buflist_data;
for (; buf != NULL && !got_int; buf = buflist_data
for (; buf != NULL && !got_int; buf = buflist_data != NULL
? (++p < buflist_data + buflist.ga_len ? *p : NULL)
: buf->b_next)
#else