diff options
author | Alexander Gavriliuk <alexandrgproductengine@lindenlab.com> | 2024-07-17 21:14:25 +0200 |
---|---|---|
committer | Guru <alexandrgproductengine@lindenlab.com> | 2024-07-18 09:39:13 +0200 |
commit | 2f52fecaababfb7b043cac16a363da21c8dd29e4 (patch) | |
tree | bb60e5e6e217f5a64f816df400465fc9ce3ee53c /indra | |
parent | e30ff8ad0756d8d936363a658893f156b15bda0a (diff) |
#2051 BugSplat Crash #1495268: LLVOAvatar::updateRiggingInfo()
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llvoavatar.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp index ac95a2f8f7..fadea01d3c 100644 --- a/indra/newview/llvoavatar.cpp +++ b/indra/newview/llvoavatar.cpp @@ -2589,6 +2589,9 @@ void LLVOAvatar::idleUpdate(LLAgent &agent, const F64 &time) { LL_PROFILE_ZONE_SCOPED_CATEGORY_AVATAR; + if (LLApp::isExiting()) + return; + if (isDead()) { LL_INFOS() << "Warning! Idle on dead avatar" << LL_ENDL; |