diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-30 21:04:14 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-01 08:59:46 +0100 |
commit | aa668984f6a1f6e5c4d3d23dc89bab59f66baa5c (patch) | |
tree | 7634d660cc6b499b7eaf3cb17bf64c0c2ea881fc /include/cppuhelper | |
parent | 820a29950b3085a713026995fdc43e32b6ded5f7 (diff) |
coverity#707714: Uninitialized pointer
Change-Id: I98e21ad28ea31bae41894d1804cbafe0c247035d
Diffstat (limited to 'include/cppuhelper')
-rw-r--r-- | include/cppuhelper/weak.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/cppuhelper/weak.hxx b/include/cppuhelper/weak.hxx index dcddbb6d08c7..03399fe46277 100644 --- a/include/cppuhelper/weak.hxx +++ b/include/cppuhelper/weak.hxx @@ -102,6 +102,7 @@ public: inline OWeakObject() SAL_THROW(()) : m_refCount( 0 ) , m_pWeakConnectionPoint( 0 ) + , m_pReserved(0) {} #endif /** Dummy copy constructor. Set the reference count to zero. |