summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-18 11:28:44 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-18 15:18:07 +0000
commit192623b391342c592ccf15a8468aee9c66a88c48 (patch)
treeebf89365ed124c0f4e18627ac73d2b1b598d80f1 /editeng
parente9f924ece26dee1eed3671ac231a786deedc2027 (diff)
coverity#984086 Uninitialized scalar field
Change-Id: Ifa94f76edbbede207abd1974c9add4fdf740eecf
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/items/bulitem.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/editeng/source/items/bulitem.cxx b/editeng/source/items/bulitem.cxx
index 52d2f99a181f..9c64912139be 100644
--- a/editeng/source/items/bulitem.cxx
+++ b/editeng/source/items/bulitem.cxx
@@ -111,9 +111,10 @@ SvxBulletItem::SvxBulletItem( sal_uInt16 _nWhich ) : SfxPoolItem( _nWhich )
// -----------------------------------------------------------------------
-SvxBulletItem::SvxBulletItem( SvStream& rStrm, sal_uInt16 _nWhich ) :
- SfxPoolItem( _nWhich ),
- pGraphicObject( NULL )
+SvxBulletItem::SvxBulletItem( SvStream& rStrm, sal_uInt16 _nWhich )
+ : SfxPoolItem(_nWhich)
+ , pGraphicObject(NULL)
+ , nStyle(0)
{
rStrm.ReadUInt16( nStyle );