diff options
Diffstat (limited to 'linden')
-rw-r--r-- | linden/indra/newview/llfloaterinspect.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/linden/indra/newview/llfloaterinspect.cpp b/linden/indra/newview/llfloaterinspect.cpp index d308210..8a665b5 100644 --- a/linden/indra/newview/llfloaterinspect.cpp +++ b/linden/indra/newview/llfloaterinspect.cpp | |||
@@ -206,8 +206,9 @@ void LLFloaterInspect::refresh() | |||
206 | mObjectList->operateOnAll(LLScrollListCtrl::OP_DELETE); | 206 | mObjectList->operateOnAll(LLScrollListCtrl::OP_DELETE); |
207 | //List all transient objects, then all linked objects | 207 | //List all transient objects, then all linked objects |
208 | 208 | ||
209 | for (LLObjectSelection::iterator iter = mObjectSelection->begin(); | 209 | //Crash fix for VWR-10823 |
210 | iter != mObjectSelection->end(); iter++) | 210 | for (LLObjectSelection::valid_iterator iter = mObjectSelection->valid_begin(); |
211 | iter != mObjectSelection->valid_end(); iter++) | ||
211 | { | 212 | { |
212 | LLSelectNode* obj = *iter; | 213 | LLSelectNode* obj = *iter; |
213 | LLSD row; | 214 | LLSD row; |