From 9c1d45d986f3c58593fde0fd62ab22e056dd3881 Mon Sep 17 00:00:00 2001 From: senorblanco Date: Fri, 22 Jul 2016 13:51:42 -0700 Subject: Always init SkPathRef variables. BUG=623195 GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2173853003 Review-Url: https://codereview.chromium.org/2173853003 --- include/core/SkPathRef.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/core/SkPathRef.h b/include/core/SkPathRef.h index 0002b594b4..344e705fc3 100644 --- a/include/core/SkPathRef.h +++ b/include/core/SkPathRef.h @@ -335,8 +335,8 @@ private: fIsOval = false; fIsRRect = false; // The next two values don't matter unless fIsOval or fIsRRect are true. - SkDEBUGCODE(fRRectOrOvalIsCCW = false); - SkDEBUGCODE(fRRectOrOvalStartIdx = 0xAC); + fRRectOrOvalIsCCW = false; + fRRectOrOvalStartIdx = 0xAC; SkDEBUGCODE(fEditorsAttached = 0;) SkDEBUGCODE(this->validate();) } -- cgit v1.2.3