summaryrefslogtreecommitdiff
path: root/indra/llmessage
diff options
context:
space:
mode:
authorTofu Linden <tofu.linden@lindenlab.com>2010-01-29 15:15:52 -0800
committerTofu Linden <tofu.linden@lindenlab.com>2010-01-29 15:15:52 -0800
commit68304cbd02442589c28458e0e2574d3a31aa1282 (patch)
tree3f09da4b7d657f4ca4990116c0bb0082d55e8e29 /indra/llmessage
parent54cc8274b07a66f412115aae92b18428670889eb (diff)
CID-312
Checker: UNINIT_CTOR Function: LLHTTPPipe::Response::Response() File: /indra/llmessage/lliohttpserver.cpp
Diffstat (limited to 'indra/llmessage')
-rw-r--r--indra/llmessage/lliohttpserver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmessage/lliohttpserver.cpp b/indra/llmessage/lliohttpserver.cpp
index d6b672ef5c..27530fbfe1 100644
--- a/indra/llmessage/lliohttpserver.cpp
+++ b/indra/llmessage/lliohttpserver.cpp
@@ -116,7 +116,7 @@ private:
void nullPipe();
private:
- Response() {;} // Must be accessed through LLPointer.
+ Response() : mPipe(NULL) {} // Must be accessed through LLPointer.
LLHTTPPipe* mPipe;
};
friend class Response;