Commit 1e1e0a3f authored by sigbjornf's avatar sigbjornf Committed by Commit bot

Oilpan: add missing pointer initialization following r362974.

TBR=oilpan-reviews
BUG=499780
NOTRY=true

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

Cr-Commit-Position: refs/heads/master@{#362989}
parent 50273713
...@@ -2213,7 +2213,7 @@ PassRefPtrWillBeRawPtr<CSSValue> CSSPropertyParser::consumeCursor(CSSParserToken ...@@ -2213,7 +2213,7 @@ PassRefPtrWillBeRawPtr<CSSValue> CSSPropertyParser::consumeCursor(CSSParserToken
else if (id == CSSValueWebkitZoomOut) else if (id == CSSValueWebkitZoomOut)
m_context.useCounter()->count(UseCounter::PrefixedCursorZoomOut); m_context.useCounter()->count(UseCounter::PrefixedCursorZoomOut);
} }
RefPtrWillBeRawPtr<CSSValue> cursorType; RefPtrWillBeRawPtr<CSSValue> cursorType = nullptr;
if (id == CSSValueHand) { if (id == CSSValueHand) {
if (inQuirksMode()) // Non-standard behavior if (inQuirksMode()) // Non-standard behavior
cursorType = cssValuePool().createIdentifierValue(CSSValuePointer); cursorType = cssValuePool().createIdentifierValue(CSSValuePointer);
......
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