summaryrefslogtreecommitdiff
path: root/cppu
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-20 11:53:20 +0200
committerNoel Grandin <noel@peralex.com>2014-02-21 11:59:06 +0200
commit5fbb16410079b67693d7087726cde5a135b67524 (patch)
treed0d8db40b21ec286a3e5889830c5ecb5404ccd0a /cppu
parenta11dff0342cd826c6e680a83a011e606595acfb7 (diff)
cid#707712 Uninitialized pointer field
Change-Id: I95205c6cccac00f782f457215fd650551fe67274
Diffstat (limited to 'cppu')
-rw-r--r--cppu/source/AffineBridge/AffineBridge.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/cppu/source/AffineBridge/AffineBridge.cxx b/cppu/source/AffineBridge/AffineBridge.cxx
index 973ef0c32c81..72d0f88cb3ad 100644
--- a/cppu/source/AffineBridge/AffineBridge.cxx
+++ b/cppu/source/AffineBridge/AffineBridge.cxx
@@ -132,7 +132,10 @@ void OuterThread::run(void)
AffineBridge::AffineBridge(void)
- : m_innerThreadId(0),
+ : m_message (CB_DONE),
+ m_pCallee (0),
+ m_pParam (0),
+ m_innerThreadId(0),
m_pInnerThread (NULL),
m_enterCount (0),
m_outerThreadId(0),