summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-05-11 11:08:01 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-05-11 11:52:29 +0100
commit7e28b591fecd7c4f9cdaaa0263170c0c18d02abb (patch)
tree2978681f3aabfb31e759307e1304938b0a41e686 /filter
parenta4d30abf39e2834043a4c6b49583e5e86e6e205e (diff)
coverity#738630 Uninitialized scalar field
Change-Id: Ib817f2dce5b6f6560c78f534905a70b7ccaf9ccb
Diffstat (limited to 'filter')
-rw-r--r--filter/source/graphicfilter/epgm/epgm.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/filter/source/graphicfilter/epgm/epgm.cxx b/filter/source/graphicfilter/epgm/epgm.cxx
index af81baefd324..c1d31b401069 100644
--- a/filter/source/graphicfilter/epgm/epgm.cxx
+++ b/filter/source/graphicfilter/epgm/epgm.cxx
@@ -56,6 +56,7 @@ public:
//=================== Methoden von PGMWriter ==============================
PGMWriter::PGMWriter(SvStream &rStream)
: m_rOStm(rStream)
+ , mpOStmOldModus(0)
, mbStatus(true)
, mnMode(0)
, mpAcc(NULL)
@@ -68,8 +69,6 @@ PGMWriter::~PGMWriter()
{
}
-
-
bool PGMWriter::WritePGM( const Graphic& rGraphic, FilterConfigItem* pFilterConfigItem )
{
if ( pFilterConfigItem )