Title: [176246] branches/safari-600.3-branch/Source/WebKit2
Revision
176246
Author
[email protected]
Date
2014-11-17 19:23:07 -0800 (Mon, 17 Nov 2014)

Log Message

Merge r176148. rdar://problem/18990684

Modified Paths

Diff

Modified: branches/safari-600.3-branch/Source/WebKit2/ChangeLog (176245 => 176246)


--- branches/safari-600.3-branch/Source/WebKit2/ChangeLog	2014-11-18 03:05:35 UTC (rev 176245)
+++ branches/safari-600.3-branch/Source/WebKit2/ChangeLog	2014-11-18 03:23:07 UTC (rev 176246)
@@ -1,5 +1,21 @@
 2014-11-17  Dana Burkart  <[email protected]>
 
+        Merge r176148. <rdar://problem/18990684>
+
+    2014-11-14  Tim Horton  <[email protected]>
+    
+            Frequent crashes under actionContextForResultAtPoint
+            https://bugs.webkit.org/show_bug.cgi?id=138761
+            <rdar://problem/18990684>
+    
+            Reviewed by Dean Jackson.
+    
+            * WebProcess/InjectedBundle/API/c/WKBundlePageOverlay.cpp:
+            (PageOverlayClientImpl::actionContextForResultAtPoint):
+            Initialize apiRange.
+    
+2014-11-17  Dana Burkart  <[email protected]>
+
         Merge r176131. <rdar://problem/18941927>
 
     2014-11-14  Beth Dakin  <[email protected]>

Modified: branches/safari-600.3-branch/Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePageOverlay.cpp (176245 => 176246)


--- branches/safari-600.3-branch/Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePageOverlay.cpp	2014-11-18 03:05:35 UTC (rev 176245)
+++ branches/safari-600.3-branch/Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePageOverlay.cpp	2014-11-18 03:23:07 UTC (rev 176246)
@@ -139,7 +139,7 @@
         if (!m_client.actionContextForResultAtPoint)
             return nil;
 
-        WKBundleRangeHandleRef apiRange;
+        WKBundleRangeHandleRef apiRange = nullptr;
         DDActionContext *actionContext = (DDActionContext *)m_client.actionContextForResultAtPoint(toAPI(&pageOverlay), WKPointMake(location.x(), location.y()), &apiRange, m_client.base.clientInfo);
 
         if (apiRange)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to