aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar senorblanco <senorblanco@chromium.org>2016-07-22 13:51:42 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-07-22 13:51:42 -0700
commit9c1d45d986f3c58593fde0fd62ab22e056dd3881 (patch)
treeb5cced9d10e4db81047c1cfb464578dd18187d1f /include
parenta1ce2163906eeb1dd5c543215c25cea856eda6cb (diff)
Always init SkPathRef variables.
Diffstat (limited to 'include')
-rw-r--r--include/core/SkPathRef.h4
1 files changed, 2 insertions, 2 deletions
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();)
}