Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
b854cde9
Commit
b854cde9
authored
14 years ago
by
Kitty Barnett
Browse files
Options
Downloads
Patches
Plain Diff
STORM-800 FIXED Crash in LLRemoteParcelInfoProcessor::processParcelInfoReply()
parent
0f1d337a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
indra/newview/llremoteparcelrequest.cpp
+8
-5
8 additions, 5 deletions
indra/newview/llremoteparcelrequest.cpp
with
8 additions
and
5 deletions
indra/newview/llremoteparcelrequest.cpp
+
8
−
5
View file @
b854cde9
...
@@ -140,22 +140,25 @@ void LLRemoteParcelInfoProcessor::processParcelInfoReply(LLMessageSystem* msg, v
...
@@ -140,22 +140,25 @@ void LLRemoteParcelInfoProcessor::processParcelInfoReply(LLMessageSystem* msg, v
typedef
std
::
vector
<
observer_multimap_t
::
iterator
>
deadlist_t
;
typedef
std
::
vector
<
observer_multimap_t
::
iterator
>
deadlist_t
;
deadlist_t
dead_iters
;
deadlist_t
dead_iters
;
observer_multimap_t
::
iterator
oi
;
observer_multimap_t
::
iterator
oi
=
observers
.
lower_bound
(
parcel_data
.
parcel_id
);
observer_multimap_t
::
iterator
start
=
observers
.
lower_bound
(
parcel_data
.
parcel_id
);
observer_multimap_t
::
iterator
end
=
observers
.
upper_bound
(
parcel_data
.
parcel_id
);
observer_multimap_t
::
iterator
end
=
observers
.
upper_bound
(
parcel_data
.
parcel_id
);
for
(
oi
=
start
;
oi
!=
end
;
++
oi
)
while
(
oi
!=
end
)
{
{
LLRemoteParcelInfoObserver
*
observer
=
oi
->
second
.
get
();
// increment the loop iterator now since it may become invalid below
observer_multimap_t
::
iterator
cur_oi
=
oi
++
;
LLRemoteParcelInfoObserver
*
observer
=
cur_oi
->
second
.
get
();
if
(
observer
)
if
(
observer
)
{
{
// may invalidate cur_oi if the observer removes itself
observer
->
processParcelInfo
(
parcel_data
);
observer
->
processParcelInfo
(
parcel_data
);
}
}
else
else
{
{
// the handle points to an expired observer, so don't keep it
// the handle points to an expired observer, so don't keep it
// around anymore
// around anymore
dead_iters
.
push_back
(
oi
);
dead_iters
.
push_back
(
cur_
oi
);
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment