Changeset 209208 in webkit


Ignore:
Timestamp:
Dec 1, 2016 2:23:50 PM (7 years ago)
Author:
matthew_hanson@apple.com
Message:

Merge r208629. rdar://problem/29277337

Location:
branches/safari-602-branch/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-602-branch/Source/WebCore/ChangeLog

    r209207 r209208  
     12016-12-01  Matthew Hanson  <matthew_hanson@apple.com>
     2
     3        Merge r208629. rdar://problem/29277337
     4
     5    2016-11-11  Brent Fulgham  <bfulgham@apple.com>
     6
     7            Unreviewed build fix after r208628
     8
     9            * bindings/js/SerializedScriptValue.cpp:
     10            (WebCore::CloneDeserializer::readTerminal): Cast pointer arithmetic to
     11            uint32_t to avoid warning.
     12
    1132016-12-01  Matthew Hanson  <matthew_hanson@apple.com>
    214
  • branches/safari-602-branch/Source/WebCore/bindings/js/SerializedScriptValue.cpp

    r209207 r209208  
    22702270            if (!read(length))
    22712271                return JSValue();
    2272             if (m_end - m_ptr < length) {
     2272            if (static_cast<uint32_t>(m_end - m_ptr) < length) {
    22732273                fail();
    22742274                return JSValue();
Note: See TracChangeset for help on using the changeset viewer.