| Index: net/spdy/spdy_http_stream.cc
|
| diff --git a/net/spdy/spdy_http_stream.cc b/net/spdy/spdy_http_stream.cc
|
| index 9cbaeca68d67932af7be0a23f1426395d82cee67..553287163fbad175f263ccadffcf501562f05423 100644
|
| --- a/net/spdy/spdy_http_stream.cc
|
| +++ b/net/spdy/spdy_http_stream.cc
|
| @@ -398,7 +398,7 @@ void SpdyHttpStream::ScheduleBufferedReadCallback() {
|
| const int kBufferTimeMs = 1;
|
| MessageLoop::current()->PostDelayedTask(
|
| FROM_HERE,
|
| - base::Bind(&SpdyHttpStream::DoBufferedReadCallback,
|
| + base::Bind(base::IgnoreResult(&SpdyHttpStream::DoBufferedReadCallback),
|
| weak_factory_.GetWeakPtr()),
|
| kBufferTimeMs);
|
| }
|
|
|