mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 00:50:22 +00:00
LibLine: Uninitialized members in Editor, found by Coverity
This commit is contained in:
parent
3ee0917dcb
commit
c1fd41c38c
Notes:
sideshowbarker
2024-07-19 03:30:57 +09:00
Author: https://github.com/bgianfo Commit: https://github.com/SerenityOS/serenity/commit/c1fd41c38cb Pull-request: https://github.com/SerenityOS/serenity/pull/3184 Reviewed-by: https://github.com/awesomekling Reviewed-by: https://github.com/bugaevc
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…
Reference in a new issue