summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-20 14:31:35 +0200
committerNoel Grandin <noel@peralex.com>2014-02-21 11:59:08 +0200
commit29b1626028e7ba09e098fbeb6addd5390691743b (patch)
tree063f510374a285ccd345a75119d8e1b0647703f6 /filter
parent0b79bda0e09ead9f4a3be9f5563dc874a72cd4f9 (diff)
cid#707799 Uninitialized pointer field
Change-Id: I222dc6a0f4d2d097e88ee953270c5c6f7382213e
Diffstat (limited to 'filter')
-rw-r--r--filter/source/graphicfilter/eps/eps.cxx50
1 files changed, 50 insertions, 0 deletions
diff --git a/filter/source/graphicfilter/eps/eps.cxx b/filter/source/graphicfilter/eps/eps.cxx
index 434f057d1cf2..5793c9174d62 100644
--- a/filter/source/graphicfilter/eps/eps.cxx
+++ b/filter/source/graphicfilter/eps/eps.cxx
@@ -245,6 +245,56 @@ public:
//---------------------------------------------------------------------------------
PSWriter::PSWriter()
+ : mbStatus(sal_False)
+ , mnLevelWarning(0)
+ , mnLastPercent(0)
+ , mnLatestPush(0)
+ , mnLevel(0)
+ , mbGrayScale(sal_False)
+ , mbCompression(sal_False)
+ , mnPreview(0)
+ , mnTextMode(0)
+ , mpPS(NULL)
+ , pMTF(NULL)
+ , pAMTF(NULL)
+ , aVDev()
+ , nBoundingX1(0)
+ , nBoundingY1(0)
+ , nBoundingX2(0)
+ , nBoundingY2(0)
+ , pGDIStack(NULL)
+ , mnCursorPos(0)
+ , aColor()
+ , bLineColor(sal_False)
+ , aLineColor()
+ , bFillColor(sal_False)
+ , aFillColor()
+ , aTextColor()
+ , bTextFillColor(sal_False)
+ , aTextFillColor()
+ , aBackgroundColor()
+ , bRegionChanged(sal_False)
+ , eTextAlign()
+ , fLineWidth(0)
+ , fMiterLimit(0)
+ , eLineCap()
+ , eJoinType()
+ , aDashArray()
+ , maFont()
+ , maLastFont()
+ , nChrSet(0)
+ , pChrSetList(NULL)
+ , nNextChrSetId(0)
+ , pTable(NULL)
+ , pPrefix(NULL)
+ , nDataSize(0)
+ , nClearCode(0)
+ , nEOICode(0)
+ , nTableSize(0)
+ , nCodeSize(0)
+ , nOffset(0)
+ , dwShift(0)
+ , xStatusIndicator()
{
pAMTF = NULL;
}