Kaydet (Commit) 7b659719 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#708323 Uninitialized scalar field

Change-Id: Iea430ce93ac1add2be76222b8ee9ae6c0da53ff6
üst 8c432e5e
...@@ -28,9 +28,11 @@ ...@@ -28,9 +28,11 @@
|* |*
\******************************************************************************/ \******************************************************************************/
IMapCompat::IMapCompat( SvStream& rStm, const sal_uInt16 nStreamMode ) : IMapCompat::IMapCompat( SvStream& rStm, const sal_uInt16 nStreamMode )
pRWStm ( &rStm ), : pRWStm(&rStm)
nStmMode ( nStreamMode ) , nCompatPos(0)
, nTotalSize(0)
, nStmMode(nStreamMode)
{ {
DBG_ASSERT( nStreamMode == STREAM_READ || nStreamMode == STREAM_WRITE, "Wrong Mode!" ); DBG_ASSERT( nStreamMode == STREAM_READ || nStreamMode == STREAM_WRITE, "Wrong Mode!" );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment