diff options
| author | Rye <rye@alchemyviewer.org> | 2025-10-28 08:21:30 -0400 |
|---|---|---|
| committer | Rye <rye@alchemyviewer.org> | 2025-10-31 07:46:07 -0400 |
| commit | 578df4530c1a2bda2d4e0f005a70cea596c5c29c (patch) | |
| tree | ed9cdf0906509b0bedb1ccd5fecaf9a8e0b8eb83 /indra | |
| parent | 5a2d0b0281154e736c5a4f2f9c605a9b4ad47731 (diff) | |
Fix broken mutex lock on skinned mesh map
Signed-off-by: Rye <rye@alchemyviewer.org>
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llmeshrepository.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llmeshrepository.cpp b/indra/newview/llmeshrepository.cpp index 413f02b723..ac4b15c175 100644 --- a/indra/newview/llmeshrepository.cpp +++ b/indra/newview/llmeshrepository.cpp @@ -4503,7 +4503,7 @@ void LLMeshRepository::notifyLoadedMeshes() // erase from background thread mThread->mWorkQueue.post([=, this]() { - LLMutexLock(mThread->mSkinMapMutex); + LLMutexLock skin_lock(mThread->mSkinMapMutex); mThread->mSkinMap.erase(id); }); } |
