mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 22:08:10 +00:00
LibLine: Uninitialized members in Editor, found by Coverity
This commit is contained in:
parent
3ee0917dcb
commit
c1fd41c38c
1 changed files with 2 additions and 1 deletions
|
@ -359,7 +359,8 @@ private:
|
|||
HashMap<char, NonnullOwnPtr<KeyCallback>> m_key_callbacks;
|
||||
|
||||
// TODO: handle signals internally.
|
||||
struct termios m_termios, m_default_termios;
|
||||
struct termios m_termios {};
|
||||
struct termios m_default_termios {};
|
||||
bool m_was_interrupted { false };
|
||||
bool m_was_resized { false };
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue