Changeset 64564 in webkit


Ignore:
Timestamp:
Aug 3, 2010 10:39:50 AM (14 years ago)
Author:
andersca@apple.com
Message:

Frequent ASSERT_NOT_REACHED in Connection::processIncomingMessage when running regression tests
https://bugs.webkit.org/show_bug.cgi?id=42926
<rdar://problem/8237329>

Reviewed by Adam Roben.

Remove this assert, it's bogus. It would fire when a reply came in on the connection queue before
waitForReply was called on the client thread, but that case is already covered.

  • Platform/CoreIPC/Connection.cpp:

(CoreIPC::Connection::processIncomingMessage):

Location:
trunk/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit2/ChangeLog

    r64563 r64564  
     12010-08-03  Anders Carlsson  <andersca@apple.com>
     2
     3        Reviewed by Adam Roben.
     4
     5        Frequent ASSERT_NOT_REACHED in Connection::processIncomingMessage when running regression tests
     6        https://bugs.webkit.org/show_bug.cgi?id=42926
     7        <rdar://problem/8237329>
     8
     9        Remove this assert, it's bogus. It would fire when a reply came in on the connection queue before
     10        waitForReply was called on the client thread, but that case is already covered.
     11
     12        * Platform/CoreIPC/Connection.cpp:
     13        (CoreIPC::Connection::processIncomingMessage):
     14
    1152010-08-03  Adam Roben  <aroben@apple.com>
    216
  • trunk/WebKit2/Platform/CoreIPC/Connection.cpp

    r64223 r64564  
    176176    }
    177177
    178     if (messageID == MessageID(CoreIPCMessage::SyncMessageReply)) {
    179         // FIXME: We got a reply for another sync message someone sent, handle this.
    180         ASSERT_NOT_REACHED();
    181     }
    182 
    183178    MutexLocker locker(m_incomingMessagesLock);
    184179    m_incomingMessages.append(IncomingMessage(messageID, arguments));
Note: See TracChangeset for help on using the changeset viewer.