Chromium Code Reviews| Index: net/quic/quic_connection.cc |
| diff --git a/net/quic/quic_connection.cc b/net/quic/quic_connection.cc |
| index c8a5de17389c2c776e54f465eaace43b34ede590..b9c9312e2f04d70b734f91c76a75760a5ce9c7a1 100644 |
| --- a/net/quic/quic_connection.cc |
| +++ b/net/quic/quic_connection.cc |
| @@ -1623,7 +1623,9 @@ bool QuicConnection::WritePacketInner(QueuedPacket* packet) { |
| OnWriteError(result.error_code); |
| DLOG(ERROR) << ENDPOINT << "failed writing " << encrypted->length() |
| << " bytes " |
| - << " from host " << self_address().ToStringWithoutPort() |
| + << " from host " << (self_address().address().empty() |
|
ramant (doing other things)
2015/10/15 00:47:55
Hi Ryan,
The new test crashes on chromium becaus
|
| + ? " empty address " |
| + : self_address().ToStringWithoutPort()) |
| << " to address " << peer_address().ToString(); |
| return false; |
| } |