summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorandreykproductengine <andreykproductengine@lindenlab.com>2018-08-17 21:48:40 +0300
committerandreykproductengine <andreykproductengine@lindenlab.com>2018-08-17 21:48:40 +0300
commit50453b47fe6b2e402968e27c4898f3dd3253bff1 (patch)
treec48b599dbb71b0736fe4a46d005ded1bfc4b4174 /indra
parent7aaaabdea7858fcae36808569aa4a574ad8d95ee (diff)
MAINT-5651 Froce-quit crash
Diffstat (limited to 'indra')
-rw-r--r--indra/llmessage/lltransfermanager.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/llmessage/lltransfermanager.cpp b/indra/llmessage/lltransfermanager.cpp
index ec7b21d8b6..452b77fb6d 100644
--- a/indra/llmessage/lltransfermanager.cpp
+++ b/indra/llmessage/lltransfermanager.cpp
@@ -62,9 +62,11 @@ LLTransferManager::LLTransferManager() :
LLTransferManager::~LLTransferManager()
{
+ // LLTransferManager should have been cleaned up by message system shutdown process
+ llassert(!mValid);
if (mValid)
{
- LL_WARNS() << "LLTransferManager::~LLTransferManager - Should have been cleaned up by message system shutdown process" << LL_ENDL;
+ // Usually happens if OS tries to kill viewer
cleanup();
}
}