mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 08:36:15 +00:00
LibThread: Uninitialized member variable in Thread, found by Coverity
This commit is contained in:
committed by
Andreas Kling
parent
e160181a73
commit
0ca00639a9
@@ -45,7 +45,7 @@ public:
|
||||
|
||||
private:
|
||||
Function<int()> m_action;
|
||||
pthread_t m_tid;
|
||||
pthread_t m_tid { 0 };
|
||||
String m_thread_name;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user