coverity#738632 Uninitialized scalar field

Change-Id: Ic5ca12b6e18890fbc289063fc7518b44abf90e2c
This commit is contained in:
Caolán McNamara
2014-04-11 16:04:46 +01:00
parent e6e4474aae
commit cbe71fb3d4

View File

@@ -56,17 +56,19 @@ public:
};
//=================== Methoden von RASWriter ==============================
RASWriter::RASWriter(SvStream &rStream)
: m_rOStm(rStream)
, mbStatus(sal_True)
, mpAcc(NULL)
, mnRepCount( 0xffffffff )
, mnWidth(0)
, mnHeight(0)
, mnColors(0)
, mnDepth(0)
, mnRepCount(0xffffffff)
, mnRepVal(0)
{
}
RASWriter::~RASWriter()
{
}