summaryrefslogtreecommitdiff
path: root/include/cppuhelper
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-03-08 11:12:35 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-03-08 16:36:55 -0600
commit4c2f8fd74c43a7a85a931bfcf15654af12f082a8 (patch)
tree4e1d5f4f7685296de93300bee81e3adedb7cb465 /include/cppuhelper
parentd364e6eb08dfdc867515d5bf596208cc67b004ad (diff)
coverity#707714: Uninitialized pointer
Change-Id: Id8cf528f9c4ab76fda5be80d8fd44d7202a377d7
Diffstat (limited to 'include/cppuhelper')
-rw-r--r--include/cppuhelper/weak.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/cppuhelper/weak.hxx b/include/cppuhelper/weak.hxx
index 4443eff87ba6..47f3d8d04071 100644
--- a/include/cppuhelper/weak.hxx
+++ b/include/cppuhelper/weak.hxx
@@ -112,8 +112,9 @@ public:
: com::sun::star::uno::XWeak()
, m_refCount( 0 )
, m_pWeakConnectionPoint( 0 )
+ , m_pReserved(0)
{
- (void) rObj;
+ (void) rObj;
}
/** Dummy assignment operator. Does not affect reference count.