diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2025-04-01 21:16:38 +0300 |
---|---|---|
committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2025-04-07 21:13:48 +0300 |
commit | b62aae79599544206a12e238359e0ecd1be33213 (patch) | |
tree | d706aed8c48110680c4ab6a731824ad3441f2462 /indra | |
parent | 27fd726faec22dec3d661e4cf101d15148089d5b (diff) |
#3849 Crash at LLSelectMgr::updatePointAt
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llselectmgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llselectmgr.cpp b/indra/newview/llselectmgr.cpp index cc88d31aee..fbf5aa84d8 100644 --- a/indra/newview/llselectmgr.cpp +++ b/indra/newview/llselectmgr.cpp @@ -7486,7 +7486,7 @@ void LLSelectMgr::updatePointAt() LLVector3 select_offset; const LLPickInfo& pick = gViewerWindow->getLastPick(); LLViewerObject *click_object = pick.getObject(); - bool was_hud = pick.mPickHUD && !click_object->isHUDAttachment(); + bool was_hud = pick.mPickHUD && click_object && !click_object->isHUDAttachment(); if (click_object && click_object->isSelected() && !was_hud) { // clicked on another object in our selection group, use that as target |