Title: [179848] branches/safari-600.1.17-branch/Source/WebKit/win
Revision
179848
Author
[email protected]
Date
2015-02-09 15:25:35 -0800 (Mon, 09 Feb 2015)

Log Message

Merged r179841. <rdar://problem/19772847>

Modified Paths

Diff

Modified: branches/safari-600.1.17-branch/Source/WebKit/win/ChangeLog (179847 => 179848)


--- branches/safari-600.1.17-branch/Source/WebKit/win/ChangeLog	2015-02-09 23:19:20 UTC (rev 179847)
+++ branches/safari-600.1.17-branch/Source/WebKit/win/ChangeLog	2015-02-09 23:25:35 UTC (rev 179848)
@@ -1,3 +1,19 @@
+2015-02-09  Babak Shafiei  <[email protected]>
+
+        Merge r179841.
+
+    2015-02-09  Brent Fulgham  <[email protected]>
+
+            AX: [Win] OBJID_CLIENT comparisons broken in 64-bit builds
+            https://bugs.webkit.org/show_bug.cgi?id=141391
+            <rdar://problem/19767342>
+
+            Reviewed by Anders Carlsson.
+
+            * WebView.cpp:
+            (WebView::onGetObject): Cast lParam as LONG to ensure proper word size for
+            comparison against OBJID_CLIENT.
+
 2014-08-26  Dana Burkart  <[email protected]>
 
         Merge r172977. <rdar://problem/18141703>

Modified: branches/safari-600.1.17-branch/Source/WebKit/win/WebView.cpp (179847 => 179848)


--- branches/safari-600.1.17-branch/Source/WebKit/win/WebView.cpp	2015-02-09 23:19:20 UTC (rev 179847)
+++ branches/safari-600.1.17-branch/Source/WebKit/win/WebView.cpp	2015-02-09 23:25:35 UTC (rev 179848)
@@ -6212,7 +6212,7 @@
 {
     lResult = 0;
 
-    if (lParam != OBJID_CLIENT)
+    if (static_cast<LONG>(lParam) != OBJID_CLIENT)
         return false;
 
     AXObjectCache::enableAccessibility();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to