Commit aab1bc85 authored by ager@chromium.org's avatar ager@chromium.org

Oilpan: fix use of uninitialized raw pointers on the stack.

These are crashing on layout tests in the oilpan build. The reason is
that with oilpan these are just raw pointers and are therefore not
default initialized to null.

R=haraken@chromium.org, oilpan-reviews@chromium.org, timloh@chromium.org

Review URL: https://codereview.chromium.org/473163002

git-svn-id: svn://svn.chromium.org/blink/trunk@180340 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 342f54d4
......@@ -3131,9 +3131,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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment