summaryrefslogtreecommitdiff
path: root/indra/newview/llhudeffectlookat.cpp
diff options
context:
space:
mode:
authorSteven Bennetts <steve@lindenlab.com>2009-08-26 23:46:04 +0000
committerSteven Bennetts <steve@lindenlab.com>2009-08-26 23:46:04 +0000
commit71d48254e832e81ecb4c5e6a4750976cbb9afd0c (patch)
tree98b34873d2a683f2bb74cc7426aed9ae74e65587 /indra/newview/llhudeffectlookat.cpp
parentaf98aad98d43ec8b128ecac3089426d6ae6edc3f (diff)
EXT-730 - Crash in LLHUDEffectLookAt::calcTargetPosition
Diffstat (limited to 'indra/newview/llhudeffectlookat.cpp')
-rw-r--r--indra/newview/llhudeffectlookat.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llhudeffectlookat.cpp b/indra/newview/llhudeffectlookat.cpp
index 3a5bec2be0..e366340a10 100644
--- a/indra/newview/llhudeffectlookat.cpp
+++ b/indra/newview/llhudeffectlookat.cpp
@@ -610,7 +610,9 @@ bool LLHUDEffectLookAt::calcTargetPosition()
}
LLVOAvatar* source_avatar = (LLVOAvatar*)(LLViewerObject*)mSourceObject;
-
+ if (!source_avatar->isBuilt())
+ return false;
+
if (target_obj && target_obj->mDrawable.notNull())
{
LLQuaternion target_rot;