diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-08 20:15:37 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-08 20:28:01 +0000 |
commit | dbfff3f4ae1a98aec5eb22ea1ae9be950c888b1e (patch) | |
tree | ca69074e90b40bbe6793784b3f828fcf25725b9c /idl | |
parent | 27f033ec70b74fe8daa3563b02427df84fe138b8 (diff) |
coverity#707932 Uninitialized scalar field
Change-Id: I73524c3e1911456ef14dcb07f073fed85f869524
Diffstat (limited to 'idl')
-rw-r--r-- | idl/source/objects/slot.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/idl/source/objects/slot.cxx b/idl/source/objects/slot.cxx index 563511e11b49..d0d666938038 100644 --- a/idl/source/objects/slot.cxx +++ b/idl/source/objects/slot.cxx @@ -52,6 +52,7 @@ SvMetaSlot::SvMetaSlot( SvMetaType * pType ) , aRecordAbsolute( sal_False, sal_False ) , pLinkedSlot(0) , pNextSlot(0) + , nListPos(0) , pEnumValue(0) { } |