summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBo Xu <bo_xu@foxitsoftware.com>2014-09-09 17:36:01 -0700
committerBo Xu <bo_xu@foxitsoftware.com>2014-09-09 17:36:01 -0700
commit6eee264fc703f27b980da2396fd0dbf6f6b5a8d8 (patch)
tree19d0f4afc6c61c846ec8850c7cae08779c0b1330
parenta38d4c3572b566f8e64b9ca4f725cbbc581e85ab (diff)
downloadpdfium-6eee264fc703f27b980da2396fd0dbf6f6b5a8d8.tar.xz
Revert of Fix uninitialized value in CPDF_ColorStateData (patchset #1 id:1 of https://codereview.chromium.org/547863002/)
Reason for revert: The initialized member variable is wrong. Needs to undo this. Original issue's description: > Fix uninitialized value in CPDF_ColorStateData > > BUG=411161 > R=tsepez@chromium.org > > Committed: https://pdfium.googlesource.com/pdfium/+/a38d4c3572b566f8e64b9ca4f725cbbc581e85ab TBR=tsepez@chromium.org,jun_fang@foxitsoftware.com NOTREECHECKS=true NOTRY=true BUG=411161 Review URL: https://codereview.chromium.org/558803004
-rw-r--r--core/include/fpdfapi/fpdf_pageobj.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/include/fpdfapi/fpdf_pageobj.h b/core/include/fpdfapi/fpdf_pageobj.h
index 1bb0677aa8..307fb16bdf 100644
--- a/core/include/fpdfapi/fpdf_pageobj.h
+++ b/core/include/fpdfapi/fpdf_pageobj.h
@@ -165,7 +165,7 @@ class CPDF_ColorStateData : public CFX_Object
{
public:
- CPDF_ColorStateData() : m_FillColor(0), m_StrokeColor(0) {}
+ CPDF_ColorStateData() {}
CPDF_ColorStateData(const CPDF_ColorStateData& src);