| Index: net/spdy/spdy_stream.cc
|
| diff --git a/net/spdy/spdy_stream.cc b/net/spdy/spdy_stream.cc
|
| index 5725253df9d889accabfbb688cc545af38223f0a..70412dd28cf6907394205f225caedf6a689dbf58 100644
|
| --- a/net/spdy/spdy_stream.cc
|
| +++ b/net/spdy/spdy_stream.cc
|
| @@ -534,7 +534,7 @@ void SpdyStream::Cancel() {
|
|
|
| cancelled_ = true;
|
| if (session_->IsStreamActive(stream_id_))
|
| - session_->ResetStream(stream_id_, RST_STREAM_CANCEL, "");
|
| + session_->ResetStream(stream_id_, RST_STREAM_CANCEL, std::string());
|
| else if (stream_id_ == 0)
|
| session_->CloseCreatedStream(this, RST_STREAM_CANCEL);
|
| }
|
|
|