Don't assert at exit.
It's perfectly ok when a responder is being deleted before it finished, when the application is exiting.
This commit is contained in:
@@ -303,7 +303,7 @@ public:
|
|||||||
|
|
||||||
~LLMeshSkinInfoResponder()
|
~LLMeshSkinInfoResponder()
|
||||||
{
|
{
|
||||||
llassert(mProcessed);
|
llassert(mProcessed || LLApp::isExiting());
|
||||||
}
|
}
|
||||||
|
|
||||||
/*virtual*/ void completedRaw(U32 status, const std::string& reason,
|
/*virtual*/ void completedRaw(U32 status, const std::string& reason,
|
||||||
@@ -331,7 +331,7 @@ public:
|
|||||||
|
|
||||||
~LLMeshDecompositionResponder()
|
~LLMeshDecompositionResponder()
|
||||||
{
|
{
|
||||||
llassert(mProcessed);
|
llassert(mProcessed || LLApp::isExiting());
|
||||||
}
|
}
|
||||||
|
|
||||||
/*virtual*/ void completedRaw(U32 status, const std::string& reason,
|
/*virtual*/ void completedRaw(U32 status, const std::string& reason,
|
||||||
@@ -359,7 +359,7 @@ public:
|
|||||||
|
|
||||||
~LLMeshPhysicsShapeResponder()
|
~LLMeshPhysicsShapeResponder()
|
||||||
{
|
{
|
||||||
llassert(mProcessed);
|
llassert(mProcessed || LLApp::isExiting());
|
||||||
}
|
}
|
||||||
|
|
||||||
/*virtual*/ void completedRaw(U32 status, const std::string& reason,
|
/*virtual*/ void completedRaw(U32 status, const std::string& reason,
|
||||||
|
|||||||
Reference in New Issue
Block a user