| Index: net/spdy/spdy_session.cc
|
| diff --git a/net/spdy/spdy_session.cc b/net/spdy/spdy_session.cc
|
| index 41de78d4738dbbe35b67c5ef11406e0c0115caef..3af9079e742f9ab0ac9f8d426f0ff2f20b3394cd 100644
|
| --- a/net/spdy/spdy_session.cc
|
| +++ b/net/spdy/spdy_session.cc
|
| @@ -1054,8 +1054,8 @@ void SpdySession::OnSyn(const spdy::SpdySynStreamControlFrame& frame,
|
| return;
|
| }
|
|
|
| - scoped_refptr<SpdyStream> stream =
|
| - new SpdyStream(this, stream_id, true, net_log_);
|
| + scoped_refptr<SpdyStream> stream(
|
| + new SpdyStream(this, stream_id, true, net_log_));
|
|
|
| stream->set_path(path);
|
|
|
|
|