diff options
author | Vadim ProductEngine <vsavchuk@productengine.com> | 2012-03-30 15:45:54 +0300 |
---|---|---|
committer | Vadim ProductEngine <vsavchuk@productengine.com> | 2012-03-30 15:45:54 +0300 |
commit | a5ef634b06a87f3738e14f5a375e19c0c5ac38f3 (patch) | |
tree | eef8837f6ae25b1c169d1275b64755888f109998 /indra | |
parent | 38ad8611c988e6ca0caae95d397e3ce67f1ceb36 (diff) |
MAINT-813 FIXED Potential fix for a crash at LLViewerRegion::getPosGlobalFromRegion.
As far as I can tell, if login fails with the "Region has begun the logout process" message, gAgentAvatarp gets destroyed, which leads to the crash.
Adding a check that should prevent it (could not reproduce to make sure).
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llviewerobject.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llviewerobject.cpp b/indra/newview/llviewerobject.cpp index 37fb77a10a..e590f29a9a 100644 --- a/indra/newview/llviewerobject.cpp +++ b/indra/newview/llviewerobject.cpp @@ -143,7 +143,10 @@ LLViewerObject *LLViewerObject::createObject(const LLUUID &id, const LLPCode pco } else { - gAgentAvatarp->updateRegion(regionp); + if (isAgentAvatarValid()) + { + gAgentAvatarp->updateRegion(regionp); + } } res = gAgentAvatarp; } |