diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-29 15:19:56 -0800 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-29 15:19:56 -0800 |
commit | ce8e2fc322737e4afa56451ed13611c1c4b9dd45 (patch) | |
tree | 3844f47e6efdcda128d7df9accbbee5e023f73f9 | |
parent | bdbb42c0f6c1f2a8afafca58435446e4e3cc37a2 (diff) |
CID-310
Checker: UNINIT_CTOR
Function: LLSimpleResponse::LLSimpleResponse()
File: /indra/llmessage/llhttpnode.h
-rw-r--r-- | indra/llmessage/llhttpnode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmessage/llhttpnode.h b/indra/llmessage/llhttpnode.h index 915aacb7cc..8212f58653 100644 --- a/indra/llmessage/llhttpnode.h +++ b/indra/llmessage/llhttpnode.h @@ -305,7 +305,7 @@ protected: ~LLSimpleResponse(); private: - LLSimpleResponse() {;} // Must be accessed through LLPointer. + LLSimpleResponse() : mCode(0) {} // Must be accessed through LLPointer. }; std::ostream& operator<<(std::ostream& out, const LLSimpleResponse& resp); |