1
Fork 0
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:
Brian Gianforcaro 2020-08-16 15:28:56 -07:00 committed by Andreas Kling
parent e160181a73
commit 0ca00639a9

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