From 7e28b591fecd7c4f9cdaaa0263170c0c18d02abb Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sun, 11 May 2014 11:08:01 +0100 Subject: coverity#738630 Uninitialized scalar field Change-Id: Ib817f2dce5b6f6560c78f534905a70b7ccaf9ccb --- filter/source/graphicfilter/epgm/epgm.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'filter') 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 ) -- cgit