LibThread: Uninitialized member variable in Thread, found by Coverity

This commit is contained in:
Brian Gianforcaro 2020-08-16 15:28:56 -07:00 committed by Andreas Kling
commit 0ca00639a9
Notes: sideshowbarker 2024-07-19 03:31:06 +09:00

View file

@ -45,7 +45,7 @@ public:
private:
Function<int()> m_action;
pthread_t m_tid;
pthread_t m_tid { 0 };
String m_thread_name;
};