summaryrefslogtreecommitdiff
path: root/include/cppuhelper
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-22 20:53:48 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-22 20:53:48 +0000
commit60c2b472de80fbc5c7acad515b524395f498bb4f (patch)
treef243dd9648c7b22c6e84a44c892ab4ffad8d89aa /include/cppuhelper
parent461ee0418a3f9a3d642f33144961b6d9eeb28207 (diff)
coverity#708183 Uninitialized scalar field
Change-Id: I45563c32a75ec2c95d4ea13d1cf9179c44cf1fd8
Diffstat (limited to 'include/cppuhelper')
-rw-r--r--include/cppuhelper/typeprovider.hxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/cppuhelper/typeprovider.hxx b/include/cppuhelper/typeprovider.hxx
index b82ed96ace95..ca21dbfcba30 100644
--- a/include/cppuhelper/typeprovider.hxx
+++ b/include/cppuhelper/typeprovider.hxx
@@ -214,9 +214,11 @@ public:
*/
inline OImplementationId( const ::com::sun::star::uno::Sequence< sal_Int8 > & rSeq ) SAL_THROW(())
: _pSeq( new ::com::sun::star::uno::Sequence< sal_Int8 >( rSeq ) )
+ , _bUseEthernetAddress( false )
{}
inline OImplementationId( const OImplementationId & rId ) SAL_THROW(())
: _pSeq( new ::com::sun::star::uno::Sequence< sal_Int8 >( rId.getImplementationId() ) )
+ , _bUseEthernetAddress( false )
{}
/** Get implementation id.