diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-20 11:53:20 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-21 11:59:06 +0200 |
commit | 5fbb16410079b67693d7087726cde5a135b67524 (patch) | |
tree | d0d8db40b21ec286a3e5889830c5ecb5404ccd0a /cppu | |
parent | a11dff0342cd826c6e680a83a011e606595acfb7 (diff) |
cid#707712 Uninitialized pointer field
Change-Id: I95205c6cccac00f782f457215fd650551fe67274
Diffstat (limited to 'cppu')
-rw-r--r-- | cppu/source/AffineBridge/AffineBridge.cxx | 5 |
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), |