Title: [245830] trunk/Source/WebKit
Revision
245830
Author
[email protected]
Date
2019-05-28 16:27:54 -0700 (Tue, 28 May 2019)

Log 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.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (245829 => 245830)


--- trunk/Source/WebKit/ChangeLog	2019-05-28 23:13:55 UTC (rev 245829)
+++ trunk/Source/WebKit/ChangeLog	2019-05-28 23:27:54 UTC (rev 245830)
@@ -1,3 +1,15 @@
+2019-05-28  Tim Horton  <[email protected]>
+
+        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.
+
 2019-05-28  Brent Fulgham  <[email protected]>
 
         Remove dead code from sandboxes

Modified: trunk/Source/WebKit/UIProcess/RemoteLayerTree/ios/RemoteLayerTreeViews.mm (245829 => 245830)


--- trunk/Source/WebKit/UIProcess/RemoteLayerTree/ios/RemoteLayerTreeViews.mm	2019-05-28 23:13:55 UTC (rev 245829)
+++ trunk/Source/WebKit/UIProcess/RemoteLayerTree/ios/RemoteLayerTreeViews.mm	2019-05-28 23:27:54 UTC (rev 245830)
@@ -98,7 +98,7 @@
     if (viewsAtPoint.isEmpty())
         return { WebCore::TouchAction::Auto };
 
-    UIView *hitView;
+    UIView *hitView = nil;
     for (auto *view : WTF::makeReversedRange(viewsAtPoint)) {
         if ([view isKindOfClass:[WKCompositingView class]]) {
             hitView = view;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to