Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(347)

Unified Diff: third_party/WebKit/Source/core/animation/ImageListInterpolationType.cpp

Issue 1423483006: Oilpan: add missing RawPtr<> initialization following r355274. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/animation/ImageListInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/ImageListInterpolationType.cpp b/third_party/WebKit/Source/core/animation/ImageListInterpolationType.cpp
index 07a6e500bc2922da3f05082f7e08750bd57e614a..84c35ca1dc5501a5b24fbefd81cbb9f4601c04ec 100644
--- a/third_party/WebKit/Source/core/animation/ImageListInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/ImageListInterpolationType.cpp
@@ -114,7 +114,7 @@ PassOwnPtr<InterpolationValue> ImageListInterpolationType::maybeConvertValue(con
if (value.isPrimitiveValue() && toCSSPrimitiveValue(value).getValueID() == CSSValueNone)
return nullptr;
- RefPtrWillBeRawPtr<CSSValueList> tempList;
+ RefPtrWillBeRawPtr<CSSValueList> tempList = nullptr;
if (!value.isBaseValueList()) {
tempList = CSSValueList::createCommaSeparated();
tempList->append(const_cast<CSSValue*>(&value)); // Take ref.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698