Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(59)

Unified Diff: src/inspector/v8-debugger.cc

Issue 2828133002: [inspector] never compare iterators in diferent containers (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/inspector/v8-debugger.cc
diff --git a/src/inspector/v8-debugger.cc b/src/inspector/v8-debugger.cc
index f90403eeb1d3afeb3abbce1f0abaccabb610b648..54604e7c2ae62ec2b38cb7ab111966031c9a6aa3 100644
--- a/src/inspector/v8-debugger.cc
+++ b/src/inspector/v8-debugger.cc
@@ -1030,7 +1030,8 @@ void V8Debugger::collectOldAsyncStacksIfNeeded() {
m_recurringTasks.swap(recurringLeft);
protocol::HashMap<void*, void*> parentLeft;
for (auto it : m_parentTask) {
- if (m_asyncTaskCreationStacks.find(it.second) == m_asyncTaskStacks.end()) {
+ if (m_asyncTaskCreationStacks.find(it.second) ==
+ m_asyncTaskCreationStacks.end()) {
continue;
}
parentLeft.insert(it);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698