diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-29 15:14:33 -0800 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-29 15:14:33 -0800 |
commit | 54cc8274b07a66f412115aae92b18428670889eb (patch) | |
tree | 10bbb1f779382e3e85f4217350c50013400dba15 | |
parent | c99025f68f5a1433488b67915070056055f325fe (diff) |
CID-313
Checker: UNINIT_CTOR
Function: LLHTTPPipe::LLHTTPPipe(const LLHTTPNode &)
File: /indra/llmessage/lliohttpserver.cpp
-rw-r--r-- | indra/llmessage/lliohttpserver.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/indra/llmessage/lliohttpserver.cpp b/indra/llmessage/lliohttpserver.cpp index 3b1ff414bc..d6b672ef5c 100644 --- a/indra/llmessage/lliohttpserver.cpp +++ b/indra/llmessage/lliohttpserver.cpp @@ -74,7 +74,12 @@ class LLHTTPPipe : public LLIOPipe { public: LLHTTPPipe(const LLHTTPNode& node) - : mNode(node), mResponse(NULL), mState(STATE_INVOKE), mChainLock(0), mStatusCode(0) + : mNode(node), + mResponse(NULL), + mState(STATE_INVOKE), + mChainLock(0), + mLockedPump(NULL), + mStatusCode(0) { } virtual ~LLHTTPPipe() { |