⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 278339 in webkit


Ignore:
Timestamp:
Jun 1, 2021, 11:45:42 PM (5 years ago)
Author:
Ryan Haddad
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

Location:
branches/safari-611-branch/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-611-branch/Source/WebCore/ChangeLog

    r277960 r278339  
     12021-06-01  Ryan Haddad  <ryanhaddad@apple.com>
     2
     3        Cherry-pick r273486. rdar://problem/75902605
     4
     5    Unreviewed. GLib debug buildfix after r273477
     6   
     7    * dom/EventContext.cpp:
     8    (WebCore::EventContext::handleLocalEvents const):
     9   
     10    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@273486 268f45cc-cd09-0410-ab3c-d52691b4dbfc
     11
     12    2021-02-25  Lauro Moura  <lmoura@igalia.com>
     13
     14            Unreviewed. GLib debug buildfix after r273477
     15
     16            * dom/EventContext.cpp:
     17            (WebCore::EventContext::handleLocalEvents const):
     18
    1192021-05-24  Alan Coon  <alancoon@apple.com>
    220
  • branches/safari-611-branch/Source/WebCore/dom/EventContext.cpp

    r273533 r278339  
    5858            for (size_t i = 0; i < length; ++i)
    5959                ASSERT(!isUnreachableNode(downcast<Node>(touchList->item(i)->target())));
    60         }
    61         checkReachability(m_touches);
    62         checkReachability(m_targetTouches);
    63         checkReachability(m_changedTouches);
     60        };
     61        checkReachability(*m_touches);
     62        checkReachability(*m_targetTouches);
     63        checkReachability(*m_changedTouches);
    6464#endif
    6565
Note: See TracChangeset for help on using the changeset viewer.