diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-05-28 12:41:54 +0100 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-05-28 12:41:54 +0100 |
commit | 6f8e96159a59b3e519cf7a5abba3ae34abcab725 (patch) | |
tree | c3b5c41a263fd3558f59690b83adc51d912534c0 | |
parent | 3927d183278e4cc11396a2c78b9393bcf6b0e802 (diff) |
CID-448
Checker: UNINIT_CTOR
Function: LLVoiceClient::LLVoiceClient()
File: /indra/newview/llvoiceclient.cpp
-rw-r--r-- | indra/newview/llvoiceclient.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llvoiceclient.cpp b/indra/newview/llvoiceclient.cpp index 91353281a8..42e44634b6 100644 --- a/indra/newview/llvoiceclient.cpp +++ b/indra/newview/llvoiceclient.cpp @@ -81,8 +81,10 @@ std::string LLVoiceClientStatusObserver::status2string(LLVoiceClientStatusObserv /////////////////////////////////////////////////////////////////////////////////////////////// LLVoiceClient::LLVoiceClient() + : + mVoiceModule(NULL), + m_servicePump(NULL) { - mVoiceModule = NULL; } //--------------------------------------------------- |