diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-05-11 11:19:56 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-11 11:52:32 +0100 |
commit | 99c5f4c1c2384fa7d924a4b46c5805a7fcf16633 (patch) | |
tree | ea78c8271eed1e9549313c165afec0589740cd01 /cppu/source | |
parent | 8477ccec4d6e0263221f7d73cc1f4ef111411280 (diff) |
coverity#707713 Uninitialized pointer field
Change-Id: I4c51287f20d070fe3227adb5a1909c9539938f27
Diffstat (limited to 'cppu/source')
-rw-r--r-- | cppu/source/threadpool/current.cxx | 1 |
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 ) { } |