Kaynağa Gözat

LibLine: Uninitialized members in Editor, found by Coverity

Brian Gianforcaro 5 yıl önce
ebeveyn
işleme
c1fd41c38c
1 değiştirilmiş dosya ile 2 ekleme ve 1 silme
  1. 2 1
      Libraries/LibLine/Editor.h

+ 2 - 1
Libraries/LibLine/Editor.h

@@ -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 };