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

Unified Diff: Source/core/css/parser/CSSPropertyParser.cpp

Issue 473163002: Oilpan: fix use of uninitialized raw pointers on the stack. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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: Source/core/css/parser/CSSPropertyParser.cpp
diff --git a/Source/core/css/parser/CSSPropertyParser.cpp b/Source/core/css/parser/CSSPropertyParser.cpp
index 8881e39f396e593db520bb6677076a1a2db13738..c924f7cff4b339163465c5dddbb457bb495cc953 100644
--- a/Source/core/css/parser/CSSPropertyParser.cpp
+++ b/Source/core/css/parser/CSSPropertyParser.cpp
@@ -3132,9 +3132,9 @@ PassRefPtrWillBeRawPtr<CSSValue> CSSPropertyParser::parseAnimationProperty()
bool CSSPropertyParser::parseWebkitTransformOriginShorthand(bool important)
{
- RefPtrWillBeRawPtr<CSSValue> originX;
- RefPtrWillBeRawPtr<CSSValue> originY;
- RefPtrWillBeRawPtr<CSSValue> originZ;
+ RefPtrWillBeRawPtr<CSSValue> originX = nullptr;
+ RefPtrWillBeRawPtr<CSSValue> originY = nullptr;
+ RefPtrWillBeRawPtr<CSSValue> originZ = nullptr;
parse2ValuesFillPosition(m_valueList.get(), originX, originY);
« 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