Title: [211711] branches/safari-603-branch/Source/WebCore
Revision
211711
Author
matthew_han...@apple.com
Date
2017-02-05 22:17:35 -0800 (Sun, 05 Feb 2017)

Log Message

Merge r211676. rdar://problem/30229990

Modified Paths

Diff

Modified: branches/safari-603-branch/Source/WebCore/ChangeLog (211710 => 211711)


--- branches/safari-603-branch/Source/WebCore/ChangeLog	2017-02-06 06:17:32 UTC (rev 211710)
+++ branches/safari-603-branch/Source/WebCore/ChangeLog	2017-02-06 06:17:35 UTC (rev 211711)
@@ -1,5 +1,16 @@
 2017-02-05  Matthew Hanson  <matthew_han...@apple.com>
 
+        Merge r211676. rdar://problem/30229990
+
+    2017-02-04  Chris Dumez  <cdu...@apple.com>
+
+            Unreviewed, fix mistake in comment added in r211569.
+
+            * history/PageCache.cpp:
+            (WebCore::PageCache::removeAllItemsForPage):
+
+2017-02-05  Matthew Hanson  <matthew_han...@apple.com>
+
         Merge r211569. rdar://problem/30229990
 
     2017-02-02  Chris Dumez  <cdu...@apple.com>

Modified: branches/safari-603-branch/Source/WebCore/history/PageCache.cpp (211710 => 211711)


--- branches/safari-603-branch/Source/WebCore/history/PageCache.cpp	2017-02-06 06:17:32 UTC (rev 211710)
+++ branches/safari-603-branch/Source/WebCore/history/PageCache.cpp	2017-02-06 06:17:35 UTC (rev 211711)
@@ -442,7 +442,7 @@
 void PageCache::removeAllItemsForPage(Page& page)
 {
     for (auto it = m_items.begin(); it != m_items.end();) {
-        // Increment iterator first so it stays invalid after the removal.
+        // Increment iterator first so it stays valid after the removal.
         auto current = it;
         ++it;
         if (&(*current)->m_cachedPage->page() == &page) {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to