mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 04:39:06 +00:00
LibThread: Uninitialized member variable in Thread, found by Coverity
This commit is contained in:
parent
e160181a73
commit
0ca00639a9
Notes:
sideshowbarker
2024-07-19 03:31:06 +09:00
Author: https://github.com/bgianfo
Commit: 0ca00639a9
Pull-request: https://github.com/SerenityOS/serenity/pull/3184
Reviewed-by: https://github.com/awesomekling
Reviewed-by: https://github.com/bugaevc
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