diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-17 23:13:16 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-17 23:15:52 -0600 |
commit | 416d0453c5dcf2802eecdec59b6e85d5b097c55b (patch) | |
tree | 742996c0ed0d91e78b066618b99b244a2dacf259 /sal | |
parent | 34af1079f4ee6b63bdb6c634c3c5b6893e92bc1e (diff) |
coverity#984129 Uninitialized scalar field
Change-Id: Ia7b1a6aa15dd2438ebb39739535c4dfe0836e785
Diffstat (limited to 'sal')
-rw-r--r-- | sal/qa/osl/process/osl_Thread.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sal/qa/osl/process/osl_Thread.cxx b/sal/qa/osl/process/osl_Thread.cxx index f252556524a3..f895a28c54b6 100644 --- a/sal/qa/osl/process/osl_Thread.cxx +++ b/sal/qa/osl/process/osl_Thread.cxx @@ -1901,6 +1901,7 @@ public: char m_Char_Test; // for pass thread-special data to thread myKeyThread(const char cData) + : m_Char_Test(0) { m_nData = cData; } |