summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2021-02-14 19:48:17 +0200
committerAndrey Kleshchev <andreykproductengine@lindenlab.com>2021-02-14 20:42:30 +0200
commitf06ebd054bfbcf7e3b4c8deb097cbb5064b85366 (patch)
treec94fb469800332f69e5471faccd0f83da37c2cf8 /indra/newview
parent4a3e32e732e5fce6ecc02c15ef8966363f5a8f76 (diff)
SL-14807 Missed a pool init in unused constructor, additional protections
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llviewerassetstorage.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/newview/llviewerassetstorage.cpp b/indra/newview/llviewerassetstorage.cpp
index b345396c2f..19f2456ae6 100644
--- a/indra/newview/llviewerassetstorage.cpp
+++ b/indra/newview/llviewerassetstorage.cpp
@@ -115,6 +115,7 @@ LLViewerAssetStorage::LLViewerAssetStorage(LLMessageSystem *msg, LLXferManager *
mCountSucceeded(0),
mTotalBytesFetched(0)
{
+ LLCoprocedureManager::instance().initializePool(VIEWER_ASSET_STORAGE_CORO_POOL);
}