diff options
Diffstat (limited to 'net/spdy/spdy_stream.cc')
-rw-r--r-- | net/spdy/spdy_stream.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/spdy/spdy_stream.cc b/net/spdy/spdy_stream.cc index 5725253..70412dd 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); } |