summaryrefslogtreecommitdiffstats
path: root/filter
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-11 17:11:53 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-11 20:27:35 +0100
commitffa82c4d148bb01a418d271b3265a35d26df1580 (patch)
treecf4b50192cb0ea43ed561897e4b83501560dd908 /filter
parentwriterfilter: remove no longer needed WRITERFILTER_WRITERFILTER_DLLPUBLIC (diff)
downloadcore-ffa82c4d148bb01a418d271b3265a35d26df1580.tar.gz
core-ffa82c4d148bb01a418d271b3265a35d26df1580.zip
coverity#738630 Uninitialized scalar field
Change-Id: Ie6b6347a8cdddfcf6b1aada2aa5c34b94cc73490
Diffstat (limited to 'filter')
-rw-r--r--filter/source/graphicfilter/epgm/epgm.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/filter/source/graphicfilter/epgm/epgm.cxx b/filter/source/graphicfilter/epgm/epgm.cxx
index 47c20d9fd3f9..65c4145edd0a 100644
--- a/filter/source/graphicfilter/epgm/epgm.cxx
+++ b/filter/source/graphicfilter/epgm/epgm.cxx
@@ -54,16 +54,16 @@ public:
};
//=================== Methoden von PGMWriter ==============================
-
PGMWriter::PGMWriter(SvStream &rStream)
: m_rOStm(rStream)
, mbStatus(sal_True)
+ , mnMode(0)
, mpAcc(NULL)
+ , mnWidth(0)
+ , mnHeight(0)
{
}
-
-
PGMWriter::~PGMWriter()
{
}