diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2025-09-01 22:56:58 +0300 |
---|---|---|
committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2025-09-02 19:31:33 +0300 |
commit | e5b7e8a9a822e69777e406d5be8239155a47155b (patch) | |
tree | b68e932a77e383f2e245784ec41f479012fd5143 | |
parent | 9959f51741dc6b2eb04485b3443334e1e2e30d19 (diff) |
#4621 Crash at LLMeshRepoThread::run(1060)
Fix a missed mutex
-rw-r--r-- | indra/newview/llmeshrepository.cpp | 1 |
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)); } } |