mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-01-16 03:45:13 +00:00
Merge pull request #896 from adjonesey/adjo/fix-regression-895
Fix Regression 895
This commit is contained in:
commit
de183d3b80
|
@ -1063,7 +1063,7 @@ ScePthread PThreadPool::Create(const char* name) {
|
|||
std::scoped_lock lock{m_mutex};
|
||||
|
||||
for (auto* p : m_threads) {
|
||||
if (p->is_free && p->name == name) {
|
||||
if (p->is_free && name != nullptr && p->name == name) {
|
||||
p->is_free = false;
|
||||
return p;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue