Chromium Code Reviews| Index: Source/core/css/parser/CSSPropertyParser.h |
| diff --git a/Source/core/css/parser/CSSPropertyParser.h b/Source/core/css/parser/CSSPropertyParser.h |
| index f2bfb62d912ee9ac9d48a6219961796ede3f34c3..4df093ce51e6a1f87cab8b81a446fd68b3c7605b 100644 |
| --- a/Source/core/css/parser/CSSPropertyParser.h |
| +++ b/Source/core/css/parser/CSSPropertyParser.h |
| @@ -382,7 +382,7 @@ private: |
| int m_inParseShorthand; |
| CSSPropertyID m_currentShorthand; |
| bool m_implicitShorthand; |
| - RefPtrWillBeRawPtr<CSSCalcValue> m_parsedCalculation; |
| + RefPtrWillBeRawPtr<CSSCalcValue> m_parsedCalculation = nullptr; |
|
haraken
2014/03/24 13:52:54
This object is stack-allocated. This could be a Re
Mads Ager (chromium)
2014/03/24 14:27:30
Yes, thanks. Done and I will merge with Ian's chan
|
| // FIXME: There is probably a small set of APIs we could expose for these |
| // classes w/o needing to make them friends. |