diff options
-rw-r--r-- | ChangeLog.txt | 7 | ||||
-rw-r--r-- | linden/indra/newview/llfloaterinspect.cpp | 5 |
2 files changed, 10 insertions, 2 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt index b6b9739..6a71bcc 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt | |||
@@ -16,6 +16,13 @@ | |||
16 | Bumped version to 1.1.0 alpha. | 16 | Bumped version to 1.1.0 alpha. |
17 | 17 | ||
18 | 18 | ||
19 | 2008-12-11 McCabe Maxsted <hakushakukun@gmail.com> | ||
20 | |||
21 | * linden/indra/newview/llfloaterinspect.cpp: | ||
22 | VWR-10823: Right click > Inspect crashes viewer. | ||
23 | Backported from LL's 1.22 RC3. | ||
24 | |||
25 | |||
19 | 2008-11-24 McCabe Maxsted <hakushakukun@gmail.com> | 26 | 2008-11-24 McCabe Maxsted <hakushakukun@gmail.com> |
20 | 27 | ||
21 | * linden/indra/newview/llfloatergroupinvite.cpp: | 28 | * linden/indra/newview/llfloatergroupinvite.cpp: |
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; |