| Index: mojo/edk/system/message_pipe_dispatcher.cc
|
| diff --git a/mojo/edk/system/message_pipe_dispatcher.cc b/mojo/edk/system/message_pipe_dispatcher.cc
|
| index ff24b1aac4bb484df5bbe4a703ce04a6d9be4226..b40557909b305fb105add6e171cf95ca79d0c4a7 100644
|
| --- a/mojo/edk/system/message_pipe_dispatcher.cc
|
| +++ b/mojo/edk/system/message_pipe_dispatcher.cc
|
| @@ -144,6 +144,8 @@ MessagePipeDispatcher::CreateEquivalentDispatcherAndCloseImplNoLock(
|
| mutex().AssertHeld();
|
|
|
| // "We" are being sent over our peer.
|
| + // If |message_pipe| is null, the |if| condition below should be false.
|
| + DCHECK(message_pipe_.get());
|
| if (message_pipe == message_pipe_.get()) {
|
| // A message pipe dispatcher can't be sent over itself (this should be
|
| // disallowed by |Core|). Note that |port| is the destination port.
|
|
|