mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 18:32:28 -05:00
LibThread: Uninitialized member variable in Thread, found by Coverity
This commit is contained in:
parent
e160181a73
commit
0ca00639a9
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ public:
|
|||
|
||||
private:
|
||||
Function<int()> m_action;
|
||||
pthread_t m_tid;
|
||||
pthread_t m_tid { 0 };
|
||||
String m_thread_name;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue