Changeset 268504 in webkit


Ignore:
Timestamp:
Oct 14, 2020 6:43:42 PM (4 years ago)
Author:
rniwa@webkit.org
Message:

Unreviewed build fix for non-Cocoa platforms & release builds.

  • Platform/IPC/Connection.cpp:

(IPC::Connection::dispatchSyncMessage):

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r268503 r268504  
     12020-10-14  Ryosuke Niwa  <rniwa@webkit.org>
     2
     3        Unreviewed build fix for non-Cocoa platforms & release builds.
     4
     5        * Platform/IPC/Connection.cpp:
     6        (IPC::Connection::dispatchSyncMessage):
     7
    182020-10-14  Ryosuke Niwa  <rniwa@webkit.org>
    29
  • trunk/Source/WebKit/Platform/IPC/Connection.cpp

    r268500 r268504  
    929929
    930930    // FIXME: If the message was invalid, we should send back a SyncMessageError.
     931#if ENABLE(IPC_TESTING_API)
    931932    ASSERT(decoder.isValid() || m_ignoreInvalidMessageForTesting);
     933#else
     934    ASSERT(decoder.isValid());
     935#endif
    932936
    933937    if (replyEncoder)
Note: See TracChangeset for help on using the changeset viewer.