| Index: third_party/WebKit/Source/core/css/CSSPathValue.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSPathValue.cpp b/third_party/WebKit/Source/core/css/CSSPathValue.cpp
|
| index d25c1f81cf125b99f5befebe580f81e359393689..ff88f62af474e646ad77790b780477927d6eb38f 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSPathValue.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSPathValue.cpp
|
| @@ -34,7 +34,7 @@ CSSPathValue* createPathValue()
|
| // Need to be registered as LSan ignored, as it will be reachable and
|
| // separately referred to by emptyPathValue() callers.
|
| LEAK_SANITIZER_IGNORE_OBJECT(pathByteStream.get());
|
| - return CSSPathValue::create(pathByteStream.release());
|
| + return CSSPathValue::create(std::move(pathByteStream));
|
| }
|
|
|
| } // namespace
|
|
|