Title: [278339] branches/safari-611-branch/Source/WebCore
Revision
278339
Author
ryanhad...@apple.com
Date
2021-06-01 23:45:42 -0700 (Tue, 01 Jun 2021)

Log Message

Cherry-pick r273486. rdar://problem/75902605

    Unreviewed. GLib debug buildfix after r273477

    * dom/EventContext.cpp:
    (WebCore::EventContext::handleLocalEvents const):

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@273486 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-611-branch/Source/WebCore/ChangeLog (278338 => 278339)


--- branches/safari-611-branch/Source/WebCore/ChangeLog	2021-06-02 05:21:13 UTC (rev 278338)
+++ branches/safari-611-branch/Source/WebCore/ChangeLog	2021-06-02 06:45:42 UTC (rev 278339)
@@ -1,3 +1,21 @@
+2021-06-01  Ryan Haddad  <ryanhad...@apple.com>
+
+        Cherry-pick r273486. rdar://problem/75902605
+
+    Unreviewed. GLib debug buildfix after r273477
+    
+    * dom/EventContext.cpp:
+    (WebCore::EventContext::handleLocalEvents const):
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@273486 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2021-02-25  Lauro Moura  <lmo...@igalia.com>
+
+            Unreviewed. GLib debug buildfix after r273477
+
+            * dom/EventContext.cpp:
+            (WebCore::EventContext::handleLocalEvents const):
+
 2021-05-24  Alan Coon  <alanc...@apple.com>
 
         Cherry-pick r277177. rdar://problem/78411433

Modified: branches/safari-611-branch/Source/WebCore/dom/EventContext.cpp (278338 => 278339)


--- branches/safari-611-branch/Source/WebCore/dom/EventContext.cpp	2021-06-02 05:21:13 UTC (rev 278338)
+++ branches/safari-611-branch/Source/WebCore/dom/EventContext.cpp	2021-06-02 06:45:42 UTC (rev 278339)
@@ -57,10 +57,10 @@
             size_t length = touchList->length();
             for (size_t i = 0; i < length; ++i)
                 ASSERT(!isUnreachableNode(downcast<Node>(touchList->item(i)->target())));
-        }
-        checkReachability(m_touches);
-        checkReachability(m_targetTouches);
-        checkReachability(m_changedTouches);
+        };
+        checkReachability(*m_touches);
+        checkReachability(*m_targetTouches);
+        checkReachability(*m_changedTouches);
 #endif
 
         auto& touchEvent = downcast<TouchEvent>(event);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to