coverity#738632 Uninitialized scalar field
Change-Id: Ic5ca12b6e18890fbc289063fc7518b44abf90e2c
This commit is contained in:
@@ -56,17 +56,19 @@ public:
|
|||||||
};
|
};
|
||||||
|
|
||||||
//=================== Methoden von RASWriter ==============================
|
//=================== Methoden von RASWriter ==============================
|
||||||
|
|
||||||
RASWriter::RASWriter(SvStream &rStream)
|
RASWriter::RASWriter(SvStream &rStream)
|
||||||
: m_rOStm(rStream)
|
: m_rOStm(rStream)
|
||||||
, mbStatus(sal_True)
|
, mbStatus(sal_True)
|
||||||
, mpAcc(NULL)
|
, mpAcc(NULL)
|
||||||
, mnRepCount( 0xffffffff )
|
, mnWidth(0)
|
||||||
|
, mnHeight(0)
|
||||||
|
, mnColors(0)
|
||||||
|
, mnDepth(0)
|
||||||
|
, mnRepCount(0xffffffff)
|
||||||
|
, mnRepVal(0)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
RASWriter::~RASWriter()
|
RASWriter::~RASWriter()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user