Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
6bfe8c88
Commit
6bfe8c88
authored
Nov 04, 2010
by
hjk
Browse files
debugger: Fix memory cache cleanup for trk adapters.
Reviewed-by: Friedemann Kleint Reviewed-by: Pawel Polanski
parent
d89604bb
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/symbian.cpp
View file @
6bfe8c88
...
...
@@ -203,9 +203,10 @@ Snapshot::Snapshot()
void
Snapshot
::
reset
()
{
for
(
Memory
::
Iterator
it
=
memory
.
begin
();
it
!=
memory
.
end
();
++
it
)
{
for
(
Memory
::
Iterator
it
=
memory
.
begin
();
it
!=
memory
.
end
();
)
{
if
(
isReadOnly
(
it
.
key
()))
{
MEMORY_DEBUG
(
"KEEPING READ-ONLY RANGE"
<<
it
.
key
());
++
it
;
}
else
{
it
=
memory
.
erase
(
it
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment