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

Changeset 179848 in webkit


Ignore:
Timestamp:
Feb 9, 2015, 3:25:35 PM (12 years ago)
Author:
bshafiei@apple.com
Message:

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

Location:
branches/safari-600.1.17-branch/Source/WebKit/win
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-600.1.17-branch/Source/WebKit/win/ChangeLog

    r172986 r179848  
     12015-02-09  Babak Shafiei  <bshafiei@apple.com>
     2
     3        Merge r179841.
     4
     5    2015-02-09  Brent Fulgham  <bfulgham@apple.com>
     6
     7            AX: [Win] OBJID_CLIENT comparisons broken in 64-bit builds
     8            https://bugs.webkit.org/show_bug.cgi?id=141391
     9            <rdar://problem/19767342>
     10
     11            Reviewed by Anders Carlsson.
     12
     13            * WebView.cpp:
     14            (WebView::onGetObject): Cast lParam as LONG to ensure proper word size for
     15            comparison against OBJID_CLIENT.
     16
    1172014-08-26  Dana Burkart  <dburkart@apple.com>
    218
  • branches/safari-600.1.17-branch/Source/WebKit/win/WebView.cpp

    r172986 r179848  
    62136213    lResult = 0;
    62146214
    6215     if (lParam != OBJID_CLIENT)
     6215    if (static_cast<LONG>(lParam) != OBJID_CLIENT)
    62166216        return false;
    62176217
Note: See TracChangeset for help on using the changeset viewer.