summaryrefslogtreecommitdiff
path: root/cppu
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-05-11 11:19:56 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-05-11 11:52:32 +0100
commit99c5f4c1c2384fa7d924a4b46c5805a7fcf16633 (patch)
treeea78c8271eed1e9549313c165afec0589740cd01 /cppu
parent8477ccec4d6e0263221f7d73cc1f4ef111411280 (diff)
coverity#707713 Uninitialized pointer field
Change-Id: I4c51287f20d070fe3227adb5a1909c9539938f27
Diffstat (limited to 'cppu')
-rw-r--r--cppu/source/threadpool/current.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/cppu/source/threadpool/current.cxx b/cppu/source/threadpool/current.cxx
index 9ae55e9e8654..9e51c6db4282 100644
--- a/cppu/source/threadpool/current.cxx
+++ b/cppu/source/threadpool/current.cxx
@@ -111,6 +111,7 @@ public:
inline ThreadKey::ThreadKey( oslThreadKeyCallbackFunction pCallback ) SAL_THROW(())
: _bInit( false )
+ , _hThreadKey( 0 )
, _pCallback( pCallback )
{
}