mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
tui: fix possibility of evaluating uninitialized variables (#13987)
This commit is contained in:
parent
7bcac75f30
commit
bca19138bf
@ -557,8 +557,8 @@ HandleState ut_handle_background_color(TermInput *input)
|
|||||||
|
|
||||||
static void handle_raw_buffer(TermInput *input, bool force)
|
static void handle_raw_buffer(TermInput *input, bool force)
|
||||||
{
|
{
|
||||||
HandleState is_paste;
|
HandleState is_paste = kNotApplicable;
|
||||||
HandleState is_bc;
|
HandleState is_bc = kNotApplicable;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
if (!force
|
if (!force
|
||||||
|
Loading…
Reference in New Issue
Block a user