From 578df4530c1a2bda2d4e0f005a70cea596c5c29c Mon Sep 17 00:00:00 2001 From: Rye Date: Tue, 28 Oct 2025 08:21:30 -0400 Subject: Fix broken mutex lock on skinned mesh map Signed-off-by: Rye --- indra/newview/llmeshrepository.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }); } -- cgit v1.3