diff options
author | andreykproductengine <andreykproductengine@lindenlab.com> | 2018-08-17 21:48:40 +0300 |
---|---|---|
committer | andreykproductengine <andreykproductengine@lindenlab.com> | 2018-08-17 21:48:40 +0300 |
commit | 50453b47fe6b2e402968e27c4898f3dd3253bff1 (patch) | |
tree | c48b599dbb71b0736fe4a46d005ded1bfc4b4174 /indra | |
parent | 7aaaabdea7858fcae36808569aa4a574ad8d95ee (diff) |
MAINT-5651 Froce-quit crash
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llmessage/lltransfermanager.cpp | 4 |
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(); } } |