summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Gavriliuk <alexandrgproductengine@lindenlab.com>2024-08-09 16:32:11 +0200
committerGuru <alexandrgproductengine@lindenlab.com>2024-08-09 18:17:19 +0200
commit5a1ce7974b0c58d32c047a814fa94d4072a70de7 (patch)
tree4ed07b71affcede1c142d0a59bf5bcbc71a48d0c
parenta6131b5652124d40e782dd6bc653a9020061cf33 (diff)
#2230 BugSplat Crash #1502376: SecondLifeViewer!LLPrimitive::isAvatar(606)
-rw-r--r--indra/newview/lldrawable.cpp12
1 files changed, 2 insertions, 10 deletions
diff --git a/indra/newview/lldrawable.cpp b/indra/newview/lldrawable.cpp
index 60e7171004..3b531c41d9 100644
--- a/indra/newview/lldrawable.cpp
+++ b/indra/newview/lldrawable.cpp
@@ -1600,18 +1600,10 @@ void LLSpatialBridge::updateDistance(LLCamera& camera_in, bool force_update)
mDrawable->updateDistance(camera, force_update);
- LLViewerObject::const_child_list_t& child_list = mDrawable->getVObj()->getChildren();
- for (LLViewerObject::child_list_t::const_iterator iter = child_list.begin();
- iter != child_list.end(); iter++)
+ for (LLViewerObject* child : mDrawable->getVObj()->getChildren())
{
- LLViewerObject* child = *iter;
LLDrawable* drawable = child->mDrawable;
- if (!drawable)
- {
- continue;
- }
-
- if (!drawable->isAvatar())
+ if (drawable && !drawable->isDead() && drawable->isAvatar())
{
drawable->updateDistance(camera, force_update);
}