diff options
author | Dave Parks <davep@lindenlab.com> | 2022-06-07 15:24:40 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2022-06-07 15:24:40 -0500 |
commit | 99189ff2d5e96434cdc58115bbc03614f8e50773 (patch) | |
tree | abb936b8e0e180f9feefcfa0306364f843913ccd /indra/newview/lltexturefetch.cpp | |
parent | 197baebc62d1e4b922730266f77f4e6b555e2cac (diff) |
SL-17547 Fix for crash on shutdown introduced in last commit.
Diffstat (limited to 'indra/newview/lltexturefetch.cpp')
-rw-r--r-- | indra/newview/lltexturefetch.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/lltexturefetch.cpp b/indra/newview/lltexturefetch.cpp index 2bfdfe1789..0fa425cf22 100644 --- a/indra/newview/lltexturefetch.cpp +++ b/indra/newview/lltexturefetch.cpp @@ -3011,7 +3011,7 @@ bool LLTextureFetch::getRequestFinished(const LLUUID& id, S32& discard_level, bool LLTextureFetch::updateRequestPriority(const LLUUID& id, F32 priority) { LL_PROFILE_ZONE_SCOPED; - mRequestQueue.post([=]() + mRequestQueue.tryPost([=]() { LLTextureFetchWorker* worker = getWorker(id); if (worker) |