summaryrefslogtreecommitdiff
path: root/indra/newview/llmeshrepository.cpp
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2025-09-01 22:56:58 +0300
committerAndrey Kleshchev <117672381+akleshchev@users.noreply.github.com>2025-09-02 19:31:33 +0300
commite5b7e8a9a822e69777e406d5be8239155a47155b (patch)
treeb68e932a77e383f2e245784ec41f479012fd5143 /indra/newview/llmeshrepository.cpp
parent9959f51741dc6b2eb04485b3443334e1e2e30d19 (diff)
#4621 Crash at LLMeshRepoThread::run(1060)
Fix a missed mutex
Diffstat (limited to 'indra/newview/llmeshrepository.cpp')
-rw-r--r--indra/newview/llmeshrepository.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/newview/llmeshrepository.cpp b/indra/newview/llmeshrepository.cpp
index 997fc28333..8d5f94cdbb 100644
--- a/indra/newview/llmeshrepository.cpp
+++ b/indra/newview/llmeshrepository.cpp
@@ -2310,6 +2310,7 @@ EMeshProcessingResult LLMeshRepoThread::headerReceived(const LLVolumeParams& mes
}
if (request_skin)
{
+ LLMutexLock lock(mMutex);
mSkinRequests.push_back(UUIDBasedRequest(mesh_id));
}
}