mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 18:47:34 +00: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
Add a link
Reference in a new issue