| Index: third_party/WebKit/Source/modules/fetch/BodyStreamBuffer.cpp
|
| diff --git a/third_party/WebKit/Source/modules/fetch/BodyStreamBuffer.cpp b/third_party/WebKit/Source/modules/fetch/BodyStreamBuffer.cpp
|
| index af366abdcace41ae2e762def5b7d7d84a7ce1154..d402f5960793376bf611efb430c5bd3badd05979 100644
|
| --- a/third_party/WebKit/Source/modules/fetch/BodyStreamBuffer.cpp
|
| +++ b/third_party/WebKit/Source/modules/fetch/BodyStreamBuffer.cpp
|
| @@ -428,7 +428,7 @@ PassOwnPtr<FetchDataConsumerHandle> BodyStreamBuffer::releaseHandle()
|
| // We need to call these before calling closeAndLockAndDisturb.
|
| const bool isClosed = isStreamClosed();
|
| const bool isErrored = isStreamErrored();
|
| - OwnPtr<FetchDataConsumerHandle> handle = m_handle.release();
|
| + OwnPtr<FetchDataConsumerHandle> handle = std::move(m_handle);
|
|
|
| closeAndLockAndDisturb();
|
|
|
|
|