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

Changeset 245830 in webkit


Ignore:
Timestamp:
May 28, 2019, 4:27:54 PM (7 years ago)
Author:
timothy_horton@apple.com
Message:

REGRESSION(r245795): causing internal testers to exit early after 50 crashes.
https://bugs.webkit.org/show_bug.cgi?id=198310
<rdar://problem/51192535>

Reviewed by Simon Fraser.

  • UIProcess/RemoteLayerTree/ios/RemoteLayerTreeViews.mm:

(WebKit::touchActionsForPoint):
Initialize hitView to nil.

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r245822 r245830  
     12019-05-28  Tim Horton  <timothy_horton@apple.com>
     2
     3        REGRESSION(r245795): causing internal testers to exit early after 50 crashes.
     4        https://bugs.webkit.org/show_bug.cgi?id=198310
     5        <rdar://problem/51192535>
     6
     7        Reviewed by Simon Fraser.
     8
     9        * UIProcess/RemoteLayerTree/ios/RemoteLayerTreeViews.mm:
     10        (WebKit::touchActionsForPoint):
     11        Initialize hitView to nil.
     12
    1132019-05-28  Brent Fulgham  <bfulgham@apple.com>
    214
  • trunk/Source/WebKit/UIProcess/RemoteLayerTree/ios/RemoteLayerTreeViews.mm

    r245795 r245830  
    9999        return { WebCore::TouchAction::Auto };
    100100
    101     UIView *hitView;
     101    UIView *hitView = nil;
    102102    for (auto *view : WTF::makeReversedRange(viewsAtPoint)) {
    103103        if ([view isKindOfClass:[WKCompositingView class]]) {
Note: See TracChangeset for help on using the changeset viewer.