Changeset 179841 in webkit


Ignore:
Timestamp:
Feb 9, 2015 12:27:51 PM (9 years ago)
Author:
Brent Fulgham
Message:

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.

Location:
trunk/Source/WebKit/win
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/win/ChangeLog

    r179791 r179841  
     12015-02-09  Brent Fulgham  <bfulgham@apple.com>
     2
     3        AX: [Win] OBJID_CLIENT comparisons broken in 64-bit builds
     4        https://bugs.webkit.org/show_bug.cgi?id=141391
     5        <rdar://problem/19767342>
     6
     7        Reviewed by Anders Carlsson.
     8
     9        * WebView.cpp:
     10        (WebView::onGetObject): Cast lParam as LONG to ensure proper word size for
     11        comparison against OBJID_CLIENT.
     12
    1132015-02-07  Chris Dumez  <cdumez@apple.com>
    214
  • trunk/Source/WebKit/win/WebView.cpp

    r179489 r179841  
    62836283    lResult = 0;
    62846284
    6285     if (lParam != OBJID_CLIENT)
     6285    if (static_cast<LONG>(lParam) != OBJID_CLIENT)
    62866286        return false;
    62876287
Note: See TracChangeset for help on using the changeset viewer.